Searched refs:NPRGREG (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/amd64/
H A DAMD64ThreadContext.java71 public static final int NPRGREG = 28; field in class:AMD64ThreadContext
83 data = new long[NPRGREG];
87 return NPRGREG;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/sparc/
H A DSPARCThreadContext.java91 public static final int NPRGREG = 38; field in class:SPARCThreadContext
109 data = new long[NPRGREG];
113 return NPRGREG;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/x86/
H A DX86ThreadContext.java78 public static final int NPRGREG = 25; field in class:X86ThreadContext
94 data = new long[NPRGREG];
98 return NPRGREG;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ia64/
H A DIA64ThreadContext.java138 public static final int NPRGREG = 71; field in class:IA64ThreadContext
157 data = new long[NPRGREG];
161 return NPRGREG;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/x86/
H A DProcX86Thread.java55 debug registers X86ThreadContext.NPRGREG is 25.
59 Assert.that(regs.length <= X86ThreadContext.NPRGREG, "size of register set is greater than " + X86ThreadContext.NPRGREG);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64Thread.java46 Assert.that(regs.length == AMD64ThreadContext.NPRGREG, "size of register set must match");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThread.java47 Assert.that(regs.length == SPARCThreadContext.NPRGREG, "size of register set must match");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86Thread.java46 Assert.that(regs.length == X86ThreadContext.NPRGREG, "size of register set must match");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/amd64/
H A DProcAMD64Thread.java54 Assert.that(regs.length == AMD64ThreadContext.NPRGREG, "size mismatch");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/sparc/
H A DProcSPARCThread.java54 Assert.that(regs.length == SPARCThreadContext.NPRGREG, "size of register set must match");
/openjdk7/hotspot/agent/src/os/bsd/
H A DBsdDebuggerLocal.c297 #undef NPRGREG macro
299 #define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG macro
302 #define NPRGREG IA64_REG_COUNT macro
305 #define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG macro
308 #define NPRGREG sun_jvm_hotspot_debugger_sparc_SPARCThreadContext_NPRGREG macro
311 array = (*env)->NewLongArray(env, NPRGREG);
341 for (i = 0; i < NPRGREG; i++ ) {
/openjdk7/hotspot/agent/src/os/linux/
H A DLinuxDebuggerLocal.c298 #undef NPRGREG macro
300 #define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG macro
303 #define NPRGREG IA64_REG_COUNT macro
306 #define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG macro
309 #define NPRGREG sun_jvm_hotspot_debugger_sparc_SPARCThreadContext_NPRGREG macro
312 array = (*env)->NewLongArray(env, NPRGREG);
341 for (i = 0; i < NPRGREG; i++ ) {
/openjdk7/hotspot/agent/src/os/win32/windbg/
H A Dsawindbg.cpp32 #define NPRGREG sun_jvm_hotspot_debugger_ia64_IA64ThreadContext_NPRGREG macro
35 #define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG macro
38 #define NPRGREG sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_NPRGREG macro
482 jlongArray regs = env->NewLongArray(NPRGREG);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp963 jlongArray res = env->NewLongArray(NPRGREG);
967 for (int i = 0; i < NPRGREG; i++) {
1025 for (int i = 0; i < NPRGREG; i++) {

Completed in 129 milliseconds