hotspot/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
author iklam
Fri, 06 Sep 2013 08:42:42 -0700
changeset 19952 bc974e92f881
parent 18740 db44b1599483
child 22234 da823d78ad65
permissions -rw-r--r--
8022335: Native stack walk while generating hs_err does not work on Windows x64 Summary: Use WinDbg API StackWalk64() Reviewed-by: zgu, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13932
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: 3261
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3261
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: 3261
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: 7108
diff changeset
    25
// no precompiled headers
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 14284
diff changeset
    26
#include "asm/macroAssembler.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    27
#include "classfile/classLoader.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    29
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    30
#include "code/icBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    31
#include "code/vtableStubs.hpp"
19952
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
    32
#include "decoder_windows.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    33
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    34
#include "jvm_windows.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    35
#include "memory/allocation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    36
#include "mutex_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    37
#include "nativeInst_x86.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    38
#include "os_share_windows.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    39
#include "prims/jniFastGetField.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    40
#include "prims/jvm.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    41
#include "prims/jvm_misc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    42
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    43
#include "runtime/extendedPC.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    44
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    45
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    46
#include "runtime/java.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    47
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    48
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    49
#include "runtime/osThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    50
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    51
#include "runtime/stubRoutines.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14284
diff changeset
    52
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    53
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    54
#include "utilities/events.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    55
#include "utilities/vmError.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7108
diff changeset
    56
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
# include "unwind_windows_x86.hpp"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#undef REG_SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#undef REG_FP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#undef REG_PC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#define REG_SP Rsp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#define REG_FP Rbp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#define REG_PC Rip
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#define REG_SP Esp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#define REG_FP Ebp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#define REG_PC Eip
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
extern LONG WINAPI topLevelExceptionFilter(_EXCEPTION_POINTERS* );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// Install a win32 structured exception handler around thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  __try {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
#ifndef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // We store the current thread in this wrapperthread location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // and determine how far away this address is from the structured
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // execption pointer that FS:[0] points to.  This get_thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    // code can then get the thread pointer via FS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // Warning:  This routine must NEVER be inlined since we'd end up with
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    //           multiple offsets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    volatile Thread* wrapperthread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if ( ThreadLocalStorage::get_thread_ptr_offset() == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      int thread_ptr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
        lea eax, dword ptr wrapperthread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
        sub eax, dword ptr FS:[0H];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
        mov thread_ptr_offset, eax
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
      ThreadLocalStorage::set_thread_ptr_offset(thread_ptr_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    // Verify that the offset hasn't changed since we initally captured
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    // it. This might happen if we accidentally ended up with an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    // inlined version of this routine.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
      int test_thread_ptr_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
        lea eax, dword ptr wrapperthread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        sub eax, dword ptr FS:[0H];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        mov test_thread_ptr_offset, eax
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
      };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      assert(test_thread_ptr_offset == ThreadLocalStorage::get_thread_ptr_offset(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
             "thread pointer offset from SEH changed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#endif // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    f(value, method, args, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  } __except(topLevelExceptionFilter((_EXCEPTION_POINTERS*)_exception_info())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      // Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
// This is the language specific handler for exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
// originating from dynamically generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// We call the standard structured exception handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// We only expect Continued Execution since we cannot unwind
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// from generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
LONG HandleExceptionFromCodeCache(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  IN PEXCEPTION_RECORD ExceptionRecord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  IN ULONG64 EstablisherFrame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  IN OUT PCONTEXT ContextRecord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  IN OUT PDISPATCHER_CONTEXT DispatcherContext) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  EXCEPTION_POINTERS ep;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  LONG result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  ep.ExceptionRecord = ExceptionRecord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ep.ContextRecord = ContextRecord;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  result = topLevelExceptionFilter(&ep);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // We better only get a CONTINUE_EXECUTION from our handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // since we don't have unwind information registered.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  guarantee( result == EXCEPTION_CONTINUE_EXECUTION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
             "Unexpected result from topLevelExceptionFilter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  return(ExceptionContinueExecution);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
// Structure containing the Windows Data Structures required
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
// to register our Code Cache exception handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
// We put these in the CodeCache since the API requires
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// all addresses in these structures are relative to the Code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// area registered with RtlAddFunctionTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  char ExceptionHandlerInstr[16];  // jmp HandleExceptionFromCodeCache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  RUNTIME_FUNCTION rt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  UNWIND_INFO_EH_ONLY unw;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
} DynamicCodeData, *pDynamicCodeData;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// Register our CodeCache area with the OS so it will dispatch exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// to our topLevelExceptionFilter when we take an exception in our
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// dynamically generated code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// Arguments:  low and high are the address of the full reserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
// codeCache area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
bool os::register_code_area(char *low, char *high) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  pDynamicCodeData pDCD;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  PRUNTIME_FUNCTION prt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  PUNWIND_INFO_EH_ONLY punwind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   179
  BufferBlob* blob = BufferBlob::create("CodeCache Exception Handler", sizeof(DynamicCodeData));
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6176
diff changeset
   180
  CodeBuffer cb(blob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  MacroAssembler* masm = new MacroAssembler(&cb);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  pDCD = (pDynamicCodeData) masm->pc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  masm->jump(ExternalAddress((address)&HandleExceptionFromCodeCache));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  masm->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Create an Unwind Structure specifying no unwind info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // other than an Exception Handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  punwind = &pDCD->unw;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  punwind->Version = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  punwind->Flags = UNW_FLAG_EHANDLER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  punwind->SizeOfProlog = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  punwind->CountOfCodes = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  punwind->FrameRegister = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  punwind->FrameOffset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  punwind->ExceptionHandler = (char *)(&(pDCD->ExceptionHandlerInstr[0])) -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
                              (char*)low;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  punwind->ExceptionData[0] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // This structure describes the covered dynamic code area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Addresses are relative to the beginning on the code cache area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  prt = &pDCD->rt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  prt->BeginAddress = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  prt->EndAddress = (ULONG)(high - low);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  prt->UnwindData = ((char *)punwind - low);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  guarantee(RtlAddFunctionTable(prt, 1, (ULONGLONG)low),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
            "Failed to register Dynamic Code Exception Handler with RtlAddFunctionTable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
13859
7fe4578493fc 7190089: NMT ON: NMT failed assertion on thread's stack base address
zgu
parents: 11961
diff changeset
   214
void os::initialize_thread(Thread* thr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// Nothing to do.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
// Atomics and Stub Functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
typedef jint      xchg_func_t            (jint,     volatile jint*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
typedef intptr_t  xchg_ptr_func_t        (intptr_t, volatile intptr_t*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
typedef jint      cmpxchg_func_t         (jint,     volatile jint*,  jint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
typedef jlong     cmpxchg_long_func_t    (jlong,    volatile jlong*, jlong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
typedef jint      add_func_t             (jint,     volatile jint*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
typedef intptr_t  add_ptr_func_t         (intptr_t, volatile intptr_t*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
jint os::atomic_xchg_bootstrap(jint exchange_value, volatile jint* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  xchg_func_t* func = CAST_TO_FN_PTR(xchg_func_t*, StubRoutines::atomic_xchg_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    os::atomic_xchg_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    return (*func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  jint old_value = *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  *dest = exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  return old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
intptr_t os::atomic_xchg_ptr_bootstrap(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  xchg_ptr_func_t* func = CAST_TO_FN_PTR(xchg_ptr_func_t*, StubRoutines::atomic_xchg_ptr_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    os::atomic_xchg_ptr_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    return (*func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  intptr_t old_value = *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  *dest = exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  return old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
jint os::atomic_cmpxchg_bootstrap(jint exchange_value, volatile jint* dest, jint compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  cmpxchg_func_t* func = CAST_TO_FN_PTR(cmpxchg_func_t*, StubRoutines::atomic_cmpxchg_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    os::atomic_cmpxchg_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
    return (*func)(exchange_value, dest, compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  jint old_value = *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  if (old_value == compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    *dest = exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  return old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
jlong os::atomic_cmpxchg_long_bootstrap(jlong exchange_value, volatile jlong* dest, jlong compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  cmpxchg_long_func_t* func = CAST_TO_FN_PTR(cmpxchg_long_func_t*, StubRoutines::atomic_cmpxchg_long_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    os::atomic_cmpxchg_long_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    return (*func)(exchange_value, dest, compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  jlong old_value = *dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  if (old_value == compare_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    *dest = exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  return old_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
jint os::atomic_add_bootstrap(jint add_value, volatile jint* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  add_func_t* func = CAST_TO_FN_PTR(add_func_t*, StubRoutines::atomic_add_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    os::atomic_add_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    return (*func)(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  return (*dest) += add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
intptr_t os::atomic_add_ptr_bootstrap(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // try to use the stub:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  add_ptr_func_t* func = CAST_TO_FN_PTR(add_ptr_func_t*, StubRoutines::atomic_add_ptr_entry());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  if (func != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    os::atomic_add_ptr_func = func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    return (*func)(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  assert(Threads::number_of_threads() == 0, "for bootstrap only");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  return (*dest) += add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
xchg_func_t*         os::atomic_xchg_func         = os::atomic_xchg_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
xchg_ptr_func_t*     os::atomic_xchg_ptr_func     = os::atomic_xchg_ptr_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
cmpxchg_func_t*      os::atomic_cmpxchg_func      = os::atomic_cmpxchg_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
add_func_t*          os::atomic_add_func          = os::atomic_add_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
add_ptr_func_t*      os::atomic_add_ptr_func      = os::atomic_add_ptr_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
cmpxchg_long_func_t* os::atomic_cmpxchg_long_func = os::atomic_cmpxchg_long_bootstrap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
19952
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   331
#ifdef AMD64
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   332
/*
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   333
 * Windows/x64 does not use stack frames the way expected by Java:
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   334
 * [1] in most cases, there is no frame pointer. All locals are addressed via RSP
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   335
 * [2] in rare cases, when alloca() is used, a frame pointer is used, but this may
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   336
 *     not be RBP.
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   337
 * See http://msdn.microsoft.com/en-us/library/ew5tede7.aspx
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   338
 *
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   339
 * So it's not possible to print the native stack using the
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   340
 *     while (...) {...  fr = os::get_sender_for_C_frame(&fr); }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   341
 * loop in vmError.cpp. We need to roll our own loop.
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   342
 */
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   343
bool os::platform_print_native_stack(outputStream* st, void* context,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   344
                                     char *buf, int buf_size)
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   345
{
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   346
  CONTEXT ctx;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   347
  if (context != NULL) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   348
    memcpy(&ctx, context, sizeof(ctx));
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   349
  } else {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   350
    RtlCaptureContext(&ctx);
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   351
  }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   352
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   353
  st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   354
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   355
  STACKFRAME stk;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   356
  memset(&stk, 0, sizeof(stk));
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   357
  stk.AddrStack.Offset    = ctx.Rsp;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   358
  stk.AddrStack.Mode      = AddrModeFlat;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   359
  stk.AddrFrame.Offset    = ctx.Rbp;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   360
  stk.AddrFrame.Mode      = AddrModeFlat;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   361
  stk.AddrPC.Offset       = ctx.Rip;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   362
  stk.AddrPC.Mode         = AddrModeFlat;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   363
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   364
  int count = 0;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   365
  address lastpc = 0;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   366
  while (count++ < StackPrintLimit) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   367
    intptr_t* sp = (intptr_t*)stk.AddrStack.Offset;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   368
    intptr_t* fp = (intptr_t*)stk.AddrFrame.Offset; // NOT necessarily the same as ctx.Rbp!
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   369
    address pc = (address)stk.AddrPC.Offset;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   370
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   371
    if (pc != NULL && sp != NULL && fp != NULL) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   372
      if (count == 2 && lastpc == pc) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   373
        // Skip it -- StackWalk64() may return the same PC
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   374
        // (but different SP) on the first try.
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   375
      } else {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   376
        // Don't try to create a frame(sp, fp, pc) -- on WinX64, stk.AddrFrame
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   377
        // may not contain what Java expects, and may cause the frame() constructor
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   378
        // to crash. Let's just print out the symbolic address.
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   379
        frame::print_C_frame(st, buf, buf_size, pc);
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   380
        st->cr();
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   381
      }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   382
      lastpc = pc;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   383
    } else {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   384
      break;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   385
    }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   386
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   387
    PVOID p = WindowsDbgHelp::SymFunctionTableAccess64(GetCurrentProcess(), stk.AddrPC.Offset);
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   388
    if (!p) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   389
      // StackWalk64() can't handle this PC. Calling StackWalk64 again may cause crash.
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   390
      break;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   391
    }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   392
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   393
    BOOL result = WindowsDbgHelp::StackWalk64(
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   394
        IMAGE_FILE_MACHINE_AMD64,  // __in      DWORD MachineType,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   395
        GetCurrentProcess(),       // __in      HANDLE hProcess,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   396
        GetCurrentThread(),        // __in      HANDLE hThread,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   397
        &stk,                      // __inout   LP STACKFRAME64 StackFrame,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   398
        &ctx,                      // __inout   PVOID ContextRecord,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   399
        NULL,                      // __in_opt  PREAD_PROCESS_MEMORY_ROUTINE64 ReadMemoryRoutine,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   400
        WindowsDbgHelp::pfnSymFunctionTableAccess64(),
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   401
                                   // __in_opt  PFUNCTION_TABLE_ACCESS_ROUTINE64 FunctionTableAccessRoutine,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   402
        WindowsDbgHelp::pfnSymGetModuleBase64(),
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   403
                                   // __in_opt  PGET_MODULE_BASE_ROUTINE64 GetModuleBaseRoutine,
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   404
        NULL);                     // __in_opt  PTRANSLATE_ADDRESS_ROUTINE64 TranslateAddress
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   405
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   406
    if (!result) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   407
      break;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   408
    }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   409
  }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   410
  if (count > StackPrintLimit) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   411
    st->print_cr("...<more frames>...");
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   412
  }
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   413
  st->cr();
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   414
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   415
  return true;
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   416
}
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   417
#endif // AMD64
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   418
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
ExtendedPC os::fetch_frame_from_context(void* ucVoid,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
                    intptr_t** ret_sp, intptr_t** ret_fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  ExtendedPC  epc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  CONTEXT* uc = (CONTEXT*)ucVoid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  if (uc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    epc = ExtendedPC((address)uc->REG_PC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    if (ret_sp) *ret_sp = (intptr_t*)uc->REG_SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    if (ret_fp) *ret_fp = (intptr_t*)uc->REG_FP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    // construct empty ExtendedPC for return value checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    epc = ExtendedPC(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    if (ret_sp) *ret_sp = (intptr_t *)NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    if (ret_fp) *ret_fp = (intptr_t *)NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  return epc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
frame os::fetch_frame_from_context(void* ucVoid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  intptr_t* sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  intptr_t* fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  ExtendedPC epc = fetch_frame_from_context(ucVoid, &sp, &fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  return frame(sp, fp, epc.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
// VC++ does not save frame pointer on stack in optimized build. It
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// can be turned off by /Oy-. If we really want to walk C frames,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
// we can use the StackWalk() API.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
frame os::get_sender_for_C_frame(frame* fr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  return frame(fr->sender_sp(), fr->link(), fr->sender_pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
11961
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   453
#ifndef AMD64
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   454
// Returns an estimate of the current stack pointer. Result must be guaranteed
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   455
// to point into the calling threads stack, and be no lower than the current
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   456
// stack pointer.
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   457
address os::current_stack_pointer() {
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   458
  int dummy;
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   459
  address sp = (address)&dummy;
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   460
  return sp;
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   461
}
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   462
#else
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   463
// Returns the current stack pointer. Accurate value needed for
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   464
// os::verify_stack_alignment().
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   465
address os::current_stack_pointer() {
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   466
  typedef address get_sp_func();
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   467
  get_sp_func* func = CAST_TO_FN_PTR(get_sp_func*,
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   468
                                     StubRoutines::x86::get_previous_sp_entry());
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   469
  return (*func)();
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   470
}
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   471
#endif
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   472
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
#ifndef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
intptr_t* _get_previous_fp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  intptr_t **frameptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    mov frameptr, ebp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  return *frameptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
#endif // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
frame os::current_frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // apparently _asm not supported on windows amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  typedef intptr_t*      get_fp_func           ();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  get_fp_func* func = CAST_TO_FN_PTR(get_fp_func*,
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   490
                                     StubRoutines::x86::get_previous_fp_entry());
15468
4a274f843f41 8006508: Wrong frame constructor is called in os_linux_x86.cpp
dholmes
parents: 14633
diff changeset
   491
  if (func == NULL) return frame();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  intptr_t* fp = (*func)();
19952
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   493
  if (fp == NULL) {
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   494
    return frame();
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 18740
diff changeset
   495
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  intptr_t* fp = _get_previous_fp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  frame myframe((intptr_t*)os::current_stack_pointer(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
                (intptr_t*)fp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
                CAST_FROM_FN_PTR(address, os::current_frame));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  if (os::is_first_C_frame(&myframe)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    // stack is not walkable
15468
4a274f843f41 8006508: Wrong frame constructor is called in os_linux_x86.cpp
dholmes
parents: 14633
diff changeset
   505
    return frame();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    return os::get_sender_for_C_frame(&myframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
void os::print_context(outputStream *st, void *context) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (context == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  CONTEXT* uc = (CONTEXT*)context;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  st->print_cr("Registers:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
#ifdef AMD64
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   518
  st->print(  "RAX=" INTPTR_FORMAT, uc->Rax);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   519
  st->print(", RBX=" INTPTR_FORMAT, uc->Rbx);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   520
  st->print(", RCX=" INTPTR_FORMAT, uc->Rcx);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   521
  st->print(", RDX=" INTPTR_FORMAT, uc->Rdx);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   522
  st->cr();
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   523
  st->print(  "RSP=" INTPTR_FORMAT, uc->Rsp);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   524
  st->print(", RBP=" INTPTR_FORMAT, uc->Rbp);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   525
  st->print(", RSI=" INTPTR_FORMAT, uc->Rsi);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   526
  st->print(", RDI=" INTPTR_FORMAT, uc->Rdi);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   527
  st->cr();
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   528
  st->print(  "R8 =" INTPTR_FORMAT, uc->R8);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   529
  st->print(", R9 =" INTPTR_FORMAT, uc->R9);
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   530
  st->print(", R10=" INTPTR_FORMAT, uc->R10);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   531
  st->print(", R11=" INTPTR_FORMAT, uc->R11);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   532
  st->cr();
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   533
  st->print(  "R12=" INTPTR_FORMAT, uc->R12);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   534
  st->print(", R13=" INTPTR_FORMAT, uc->R13);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   535
  st->print(", R14=" INTPTR_FORMAT, uc->R14);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   536
  st->print(", R15=" INTPTR_FORMAT, uc->R15);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   537
  st->cr();
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   538
  st->print(  "RIP=" INTPTR_FORMAT, uc->Rip);
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   539
  st->print(", EFLAGS=" INTPTR_FORMAT, uc->EFlags);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  st->print(  "EAX=" INTPTR_FORMAT, uc->Eax);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  st->print(", EBX=" INTPTR_FORMAT, uc->Ebx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  st->print(", ECX=" INTPTR_FORMAT, uc->Ecx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  st->print(", EDX=" INTPTR_FORMAT, uc->Edx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  st->print(  "ESP=" INTPTR_FORMAT, uc->Esp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  st->print(", EBP=" INTPTR_FORMAT, uc->Ebp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  st->print(", ESI=" INTPTR_FORMAT, uc->Esi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  st->print(", EDI=" INTPTR_FORMAT, uc->Edi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  st->print(  "EIP=" INTPTR_FORMAT, uc->Eip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  st->print(", EFLAGS=" INTPTR_FORMAT, uc->EFlags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  intptr_t *sp = (intptr_t *)uc->REG_SP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  st->print_cr("Top of Stack: (sp=" PTR_FORMAT ")", sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  print_hex_dump(st, (address)sp, (address)(sp + 32), sizeof(intptr_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  // Note: it may be unsafe to inspect memory near pc. For example, pc may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  // point to garbage if entry point in an nmethod is corrupted. Leave
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // this at the end, and hope for the best.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  address pc = (address)uc->REG_PC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  st->print_cr("Instructions: (pc=" PTR_FORMAT ")", pc);
7108
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   567
  print_hex_dump(st, pc - 32, pc + 32, sizeof(char));
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   568
  st->cr();
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   569
}
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   570
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   571
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   572
void os::print_register_info(outputStream *st, void *context) {
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   573
  if (context == NULL) return;
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   574
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   575
  CONTEXT* uc = (CONTEXT*)context;
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   576
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   577
  st->print_cr("Register to memory mapping:");
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   578
  st->cr();
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   579
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   580
  // this is only for the "general purpose" registers
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   581
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   582
#ifdef AMD64
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   583
  st->print("RAX="); print_location(st, uc->Rax);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   584
  st->print("RBX="); print_location(st, uc->Rbx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   585
  st->print("RCX="); print_location(st, uc->Rcx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   586
  st->print("RDX="); print_location(st, uc->Rdx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   587
  st->print("RSP="); print_location(st, uc->Rsp);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   588
  st->print("RBP="); print_location(st, uc->Rbp);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   589
  st->print("RSI="); print_location(st, uc->Rsi);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   590
  st->print("RDI="); print_location(st, uc->Rdi);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   591
  st->print("R8 ="); print_location(st, uc->R8);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   592
  st->print("R9 ="); print_location(st, uc->R9);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   593
  st->print("R10="); print_location(st, uc->R10);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   594
  st->print("R11="); print_location(st, uc->R11);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   595
  st->print("R12="); print_location(st, uc->R12);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   596
  st->print("R13="); print_location(st, uc->R13);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   597
  st->print("R14="); print_location(st, uc->R14);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   598
  st->print("R15="); print_location(st, uc->R15);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   599
#else
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   600
  st->print("EAX="); print_location(st, uc->Eax);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   601
  st->print("EBX="); print_location(st, uc->Ebx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   602
  st->print("ECX="); print_location(st, uc->Ecx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   603
  st->print("EDX="); print_location(st, uc->Edx);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   604
  st->print("ESP="); print_location(st, uc->Esp);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   605
  st->print("EBP="); print_location(st, uc->Ebp);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   606
  st->print("ESI="); print_location(st, uc->Esi);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   607
  st->print("EDI="); print_location(st, uc->Edi);
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   608
#endif
4f87b92f3060 6970683: improvements to hs_err output
never
parents: 6418
diff changeset
   609
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
extern "C" int SpinPause () {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
   return 0 ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
   // pause == rep:nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
   // On systems that don't support pause a rep:nop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
   // is executed as a nop.  The rep: prefix is ignored.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
   _asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
      pause ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
   };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
   return 1 ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
void os::setup_fpu() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
#ifndef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  int fpu_cntrl_word = StubRoutines::fpu_cntrl_wrd_std();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  __asm fldcw fpu_cntrl_word;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
#endif // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
}
11961
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   634
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   635
#ifndef PRODUCT
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   636
void os::verify_stack_alignment() {
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   637
#ifdef AMD64
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   638
  assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment");
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   639
#endif
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   640
}
0abd4cd26e5a 7147740: add assertions to check stack alignment on VM entry from generated code (x64)
roland
parents: 7405
diff changeset
   641
#endif