Home
last modified time | relevance | path

Searched refs:context_offset (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/
Damd64-windows-nat.c24 #define context_offset(x) (offsetof (CONTEXT, x)) macro
27 context_offset (Rax),
28 context_offset (Rbx),
29 context_offset (Rcx),
30 context_offset (Rdx),
31 context_offset (Rsi),
32 context_offset (Rdi),
33 context_offset (Rbp),
34 context_offset (Rsp),
35 context_offset (R8),
[all …]
Di386-windows-nat.c27 #define context_offset(x) ((int)(size_t)&(((CONTEXT *)NULL)->x)) macro
30 context_offset (Eax),
31 context_offset (Ecx),
32 context_offset (Edx),
33 context_offset (Ebx),
34 context_offset (Esp),
35 context_offset (Ebp),
36 context_offset (Esi),
37 context_offset (Edi),
38 context_offset (Eip),
[all …]
Dwindows-nat.c665 char *context_offset = context_ptr + windows_process.mappings[r]; in windows_fetch_one_register() local
679 memcpy (bytes, context_offset, 2); in windows_fetch_one_register()
684 long l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1); in windows_fetch_one_register()
697 memcpy (&value, context_offset, size); in windows_fetch_one_register()
699 memcpy (context_offset, &value, size); in windows_fetch_one_register()
705 memcpy (&value, context_offset, size); in windows_fetch_one_register()
707 memcpy (context_offset, &value, size); in windows_fetch_one_register()
712 regcache->raw_supply (r, context_offset); in windows_fetch_one_register()
DChangeLog-202014966 * i386-windows-nat.c (context_offset): Update.