OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mc_gregs
(Results
1 - 5
of
5
) sorted by null
/external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc32-linux.c
146
# define DO(gpr) mc->
mc_gregs
[VKI_PT_R0+gpr] = tst->arch.vex.guest_GPR##gpr
153
mc->
mc_gregs
[VKI_PT_NIP] = tst->arch.vex.guest_CIA;
154
mc->
mc_gregs
[VKI_PT_MSR] = 0xf032; /* pretty arbitrary */
155
mc->
mc_gregs
[VKI_PT_ORIG_R3] = tst->arch.vex.guest_GPR3;
156
mc->
mc_gregs
[VKI_PT_CTR] = tst->arch.vex.guest_CTR;
157
mc->
mc_gregs
[VKI_PT_LNK] = tst->arch.vex.guest_LR;
158
mc->
mc_gregs
[VKI_PT_XER] = LibVEX_GuestPPC32_get_XER(&tst->arch.vex);
159
mc->
mc_gregs
[VKI_PT_CCR] = LibVEX_GuestPPC32_get_CR(&tst->arch.vex);
160
mc->
mc_gregs
[VKI_PT_MQ] = 0;
161
mc->
mc_gregs
[VKI_PT_TRAP] = 0
[
all
...]
sigframe-ppc64-linux.c
263
//mc->
mc_gregs
[VKI_PT_MQ] = 0;
264
//mc->
mc_gregs
[VKI_PT_TRAP] = 0;
265
//mc->
mc_gregs
[VKI_PT_DAR] = fault_addr;
266
//mc->
mc_gregs
[VKI_PT_DSISR] = 0;
267
//mc->
mc_gregs
[VKI_PT_RESULT] = 0;
/external/compiler-rt/lib/asan/
asan_linux.cc
203
*pc = ucontext->uc_mcontext.
mc_gregs
[MC_PC];
204
*sp = ucontext->uc_mcontext.
mc_gregs
[MC_O6];
/external/valgrind/main/coregrind/
m_signals.c
323
same as the
mc_gregs
field of the mcontext. In fact the integer
334
uc->uc_regs->
mc_gregs
[PT_MSR], otherwise it clears it. That bit
337
# define VG_UCONTEXT_INSTR_PTR(uc) ((uc)->uc_regs->
mc_gregs
[VKI_PT_NIP])
338
# define VG_UCONTEXT_STACK_PTR(uc) ((uc)->uc_regs->
mc_gregs
[VKI_PT_R1])
342
(uc)->uc_regs->
mc_gregs
[VKI_PT_R3], \
343
(((uc)->uc_regs->
mc_gregs
[VKI_PT_CCR] >> 28) & 1) \
346
{ (srP)->r_pc = (ULong)((uc)->uc_regs->
mc_gregs
[VKI_PT_NIP]); \
347
(srP)->r_sp = (ULong)((uc)->uc_regs->
mc_gregs
[VKI_PT_R1]); \
348
(srP)->misc.PPC32.r_lr = (uc)->uc_regs->
mc_gregs
[VKI_PT_LNK]; \
[
all
...]
/external/valgrind/main/include/vki/
vki-ppc32-linux.h
755
vki_elf_gregset_t
mc_gregs
;
member in struct:vki_mcontext
[
all
...]
Completed in 364 milliseconds