Searched refs:eip (Results 1 - 25 of 62) sorted by relevance

123

/external/strace/linux/i386/
H A Darch_regs.c5 #define ARCH_PC_REG i386_regs.eip
/external/strace/linux/x86_64/
H A Darch_regs.c20 uint32_t eip; member in struct:i386_user_regs_struct
41 #define ARCH_PC_REG (x86_io.iov_len == sizeof(i386_regs) ? i386_regs.eip : x86_64_regs.rip)
H A Dgetregs_old.c60 i386_regs.eip = x86_64_regs.rip;
/external/syslinux/com32/include/syslinux/
H A Dbootpm.h50 uint32_t eip; /* Offset 32 */ member in struct:syslinux_pm_regs
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dptrace.h31 long eip; member in struct:pt_regs
H A Dvm86.h79 long eip; member in struct:vm86_regs
/external/syslinux/core/thread/
H A Dkill_thread.c21 thread->esp->eip = __exit_thread;
H A Dstart_thread.c51 sp->eip = __start_thread;
/external/google-breakpad/src/processor/
H A Dstackwalker_x86.cc62 // It may seem like $eip and $esp are callee-saves, because (with Unix or
66 // mention them, which is clearly wrong for $eip and $esp.
67 { "$eip", ".ra", false,
68 StackFrameX86::CONTEXT_VALID_EIP, &MDRawContextX86::eip },
117 return context.eip;
133 frame->instruction = frame->context.eip;
246 found == last_frame->context.eip) {
313 program_string = "$eip .raSearchStart ^ = "
336 program_string = "$eip .raSearchStart ^ = "
368 dictionary_validity.find("$eip")
377 uint32_t location, eip; local
416 uint32_t eip = dictionary["$eip"]; local
[all...]
H A Dstackwalker_x86_unittest.cc162 raw_context.eip = 0x40000200;
189 raw_context.eip = 0x40000200;
212 raw_context.eip = 0x40000200;
253 raw_context.eip = 0x4000c7a5;
275 EXPECT_EQ(0x4000c7a5U, frame0->context.eip);
288 EXPECT_EQ(0x40008679U, frame1->context.eip);
315 raw_context.eip = 0x4000f49d;
339 EXPECT_EQ(0x4000f49dU, frame0->context.eip);
353 EXPECT_EQ(0x4000129dU, frame1->context.eip);
381 raw_context.eip
[all...]
H A Dstackwalker_selftest.cc191 uint32_t eip; local
194 : "=a" (eip)
196 return eip;
323 context.eip = GetEIP();
H A Dminidump_unittest.cc225 raw_context.eip = kExpectedEIP;
278 uint64_t eip; local
279 ASSERT_TRUE(md_context->GetInstructionPointer(&eip));
280 EXPECT_EQ(kExpectedEIP, eip);
294 EXPECT_EQ(kExpectedEIP, raw_context.eip);
489 raw_context0.eip = 0xaf0709e4;
501 raw_context1.eip = 0xe4f56f81;
513 raw_context2.eip = 0xb336a438;
525 raw_context3.eip = 0xdf99a60c;
537 raw_context4.eip
[all...]
/external/syslinux/com32/lib/syslinux/
H A Dshuffle_pm.c69 *(uint32_t *) (p + 1) = regs->eip - regstub - sizeof handoff_code;
/external/valgrind/none/tests/x86-solaris/
H A Dcoredump_single_thread.post.exp14 %eip = 0x........ inner+0x........
/external/elfutils/backends/
H A Di386_initreg.c63 dwarf_regs[8] = user_regs.eip;
/external/google-breakpad/src/google_breakpad/common/
H A Dminidump_cpu_x86.h128 uint32_t eip; member in struct:__anon7479
/external/kernel-headers/original/uapi/video/
H A Duvesafb.h15 __u32 eip; member in struct:v86_regs
/external/syslinux/core/include/
H A Dthread.h30 void (*eip)(void); member in struct:thread_stack
/external/valgrind/include/
H A Dpub_tool_debuginfo.h164 /* Returns info about the code address %eip: the address, function
169 eip can possibly corresponds to inlined function call(s).
170 To describe eip and the inlined function calls, the following must
172 InlIPCursor *iipc = VG_(new_IIPC)(eip);
174 buf = VG_(describe_IP)(eip, iipc);
179 To only describe eip, without the inlined calls at eip, give a NULL iipc:
180 buf = VG_(describe_IP)(eip, NULL);
186 extern const HChar* VG_(describe_IP)(Addr eip, const InlIPCursor* iipc);
188 /* Builds a IIPC (Inlined IP Cursor) to describe eip an
[all...]
/external/syslinux/com32/mboot/
H A Dmap.c165 regs.eip = eh->e_entry; /* Can be overridden further down... */
184 regs.eip = eh->e_entry + (ph->p_paddr - ph->p_vaddr);
276 regs.eip = mbh->entry_addr;
348 dprintf("Running, eip = 0x%08x, ebx = 0x%08x\n", regs.eip, regs.ebx);
/external/syslinux/gpxe/src/arch/i386/include/
H A Dcomboot.h72 uint32_t eip; /* Offset 32 */ member in struct:__anon24443
/external/linux-kselftest/tools/testing/selftests/x86/
H A Dentry_from_vm86.c131 static bool do_test(struct vm86plus_struct *v86, unsigned long eip, argument
138 v86->regs.eip = eip;
/external/llvm/test/MC/X86/
H A Dx86-64.s616 movl foo(%eip), %eax
617 // CHECK: movl foo(%eip), %eax
621 movb $12, foo(%eip)
622 // CHECK: movb $12, foo(%eip)
626 movw $12, foo(%eip)
627 // CHECK: movw $12, foo(%eip)
631 movl $12, foo(%eip)
632 // CHECK: movl $12, foo(%eip)
636 movq $12, foo(%eip)
637 // CHECK: movq $12, foo(%eip)
[all...]
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dthread_info.cc62 return regs.eip;
90 out->eip = regs.eip;
/external/libunwind/src/coredump/
H A D_UCD_access_reg_linux.c99 [UNW_X86_EIP] = offsetof(struct user_regs_struct, eip) / sizeof(long),

Completed in 561 milliseconds

123