< prev index next >

src/jdk.hotspot.agent/windows/native/libsaproc/sawindbg.cpp

Print this page
rev 60629 : 8248656: Add Windows AArch64 platform support code
Reviewed-by:
Contributed-by: mbeckwit, luhenry, burban


  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 // Disable CRT security warning against strcpy/strcat
  26 #pragma warning(disable: 4996)
  27 
  28 // this is source code windbg based SA debugger agent to debug
  29 // Dr. Watson dump files and process snapshots.
  30 
  31 #include "sun_jvm_hotspot_debugger_windbg_WindbgDebuggerLocal.h"
  32 
  33 #ifdef _M_IX86
  34   #include "sun_jvm_hotspot_debugger_x86_X86ThreadContext.h"
  35   #define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG
  36 #elif _M_AMD64
  37   #include "sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext.h"
  38   #define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG



  39 #else
  40   #error "SA windbg back-end is not supported for your cpu!"
  41 #endif
  42 
  43 #include <limits.h>
  44 #include <windows.h>
  45 #include <inttypes.h>
  46 
  47 #define DEBUG_NO_IMPLEMENTATION
  48 #include <dbgeng.h>
  49 #include <dbghelp.h>
  50 
  51 
  52 // Wrappers to simplify cleanup on errors.
  53 namespace {
  54 
  55 template <class T>
  56 class AutoArrayPtr {
  57   T* m_ptr;
  58 public:




  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 // Disable CRT security warning against strcpy/strcat
  26 #pragma warning(disable: 4996)
  27 
  28 // this is source code windbg based SA debugger agent to debug
  29 // Dr. Watson dump files and process snapshots.
  30 
  31 #include "sun_jvm_hotspot_debugger_windbg_WindbgDebuggerLocal.h"
  32 
  33 #ifdef _M_IX86
  34   #include "sun_jvm_hotspot_debugger_x86_X86ThreadContext.h"
  35   #define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG
  36 #elif _M_AMD64
  37   #include "sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext.h"
  38   #define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG
  39 #elif _M_ARM64
  40   #include "sun_jvm_hotspot_debugger_aarch64_AARCH64ThreadContext.h"
  41   #define NPRGREG sun_jvm_hotspot_debugger_aarch64_AARCH64ThreadContext_NPRGREG
  42 #else
  43   #error "SA windbg back-end is not supported for your cpu!"
  44 #endif
  45 
  46 #include <limits.h>
  47 #include <windows.h>
  48 #include <inttypes.h>
  49 
  50 #define DEBUG_NO_IMPLEMENTATION
  51 #include <dbgeng.h>
  52 #include <dbghelp.h>
  53 
  54 
  55 // Wrappers to simplify cleanup on errors.
  56 namespace {
  57 
  58 template <class T>
  59 class AutoArrayPtr {
  60   T* m_ptr;
  61 public:


< prev index next >