Searched defs:regs (Results 51 - 75 of 166) sorted by relevance

1234567

/external/valgrind/main/coregrind/m_gdbserver/
H A Dvalgrind-low-amd64.c44 static struct reg regs[] = { variable in typeref:struct:reg
123 #define max_num_regs (sizeof (regs) / sizeof (regs[0]))
163 // numbers here have to match the order of regs above.
350 regs,
367 set_register_cache (regs, dyn_num_regs);
H A Dregcache.c142 void set_register_cache (struct reg *regs, int n) argument
146 reg_defs = regs;
151 regs[i].offset = offset;
152 offset += regs[i].size;
H A Dvalgrind-low-mips32.c40 static struct reg regs[] = { variable in typeref:struct:reg
116 #define num_regs (sizeof (regs) / sizeof (regs[0]))
359 regs,
360 29, //sp = r29, which is register offset 29 in regs
371 set_register_cache (regs, num_regs);
H A Dvalgrind-low-mips64.c40 static struct reg regs[] = { variable in typeref:struct:reg
117 #define num_regs (sizeof (regs) / sizeof (regs[0]))
360 regs,
361 29, //sp = r29, which is register offset 29 in regs
372 set_register_cache (regs, num_regs);
/external/valgrind/main/none/tests/amd64/
H A DredundantRexW.c39 void pp_XMMRegs ( char* who, XMMRegs* regs ) {
44 pp_UWord128( &regs->reg[i] );
78 void setup_regs_mem ( XMMRegs* regs, Mem* mem ) { argument
83 regs->reg[i].b[j] = 0x51 + (ctr++ % 7);
91 void before_test ( XMMRegs* regs, Mem* mem ) { argument
92 setup_regs_mem( regs, mem );
95 void after_test ( char* who, XMMRegs* regs, Mem* mem ) { argument
100 xor_XMMRegs( regs, &rdiff );
151 before_test( regs, mem );
159 : /*out*/ : /*in*/ "r"(regs), "
169 XMMRegs* regs; local
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dcu21.c71 cu21_t regs; local
89 regs.addr1 = (uint64_t)dest;
90 regs.len1 = dest_len;
91 regs.addr2 = (uint64_t)source;
92 regs.len2 = source_len;
93 regs.cc = cc;
95 return regs;
H A Dcu21_1.c71 cu21_t regs; local
89 regs.addr1 = (uint64_t)dest;
90 regs.len1 = dest_len;
91 regs.addr2 = (uint64_t)source;
92 regs.len2 = source_len;
93 regs.cc = cc;
95 return regs;
H A Dcu41.c72 cu41_t regs; local
90 regs.addr1 = (uint64_t)dest;
91 regs.len1 = dest_len;
92 regs.addr2 = (uint64_t)source;
93 regs.len2 = source_len;
94 regs.cc = cc;
96 return regs;
H A Dmvcl.c32 mvcl_regs regs; local
47 regs.r1 = a1;
48 regs.r1p1 = l1;
49 regs.r2 = a2;
50 regs.r2p1 = l2;
51 regs.cc = cc;
53 return regs;
57 result_from_regs(mvcl_regs regs) argument
61 result.addr1 = regs.r1;
62 result.len1 = regs
78 mvcl_regs regs; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php28 while (preg_match($z["regex"], $q, $regs))
30 array_push($extra[$z["sqlpart"]], sprintf($z["sql"], $regs[1]));
35 $regs = array(); variable
37 if (preg_match("/^\s*\[?(\d+)\]?\s*$/", $_GET["q"], $regs))
39 $_GET["q"] = $regs[1];
40 $where = "WHERE `bugid` = $regs[1]";
43 else if (preg_match("/(\S)/", $q, $regs) || sizeof($extra["where"]) + sizeof($extra["having"]) > 0)
46 if (sizeof($regs) > 0)
250 preg_match_all("/\"([^\"]+)\"/", $str, $regs);
251 foreach ($regs[
258 $regs = null; variable
[all...]
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dptrace.h32 unsigned long regs[32]; member in struct:pt_regs
/external/kernel-headers/original/uapi/video/
H A Duvesafb.h35 struct v86_regs regs; member in struct:uvesafb_task
/external/lldb/source/Plugins/Process/POSIX/
H A DRegisterContext_i386.h142 GPR regs; // General purpose registers. member in struct:RegisterContext_i386::UserArea
/external/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h143 ArrayRef<unsigned> regs() const { function in class:llvm::LiveRangeEdit
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dfetch.c37 #include "regs.h"
48 struct pt_regs regs; member in struct:fetch_context
79 if (ptrace(PTRACE_GETREGS, proc->pid, NULL, &context->regs) == -1)
120 = (arch_addr_t)context->regs.uregs[0];
236 memcpy(data, &ctx->regs.uregs[ctx->ncrn++], 4);
317 memmove(data, ctx->regs.uregs, sz);
/external/ltrace/sysdeps/linux-gnu/metag/
H A Dtrace.c78 struct user_gp_regs regs; local
82 iov.iov_base = &regs;
83 iov.iov_len = sizeof(regs);
89 unsigned int insn = ptrace(PTRACE_PEEKTEXT, proc->pid, regs.pc,
91 *sysnum = regs.dx[0][1];
95 insn = ptrace(PTRACE_PEEKTEXT, proc->pid, regs.pc - 4,
119 struct user_gp_regs *regs)
127 if (reg >= ((sizeof(regs->ax)/N_UNITS/REG_SIZE)))
130 if (reg >= ((sizeof(regs->dx)/N_UNITS/REG_SIZE)))
136 return regs
118 get_regval_from_unit(enum metag_unitnum unit, unsigned int reg, struct user_gp_regs *regs) argument
164 struct user_gp_regs regs; local
398 struct user_gp_regs regs; local
[all...]
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dfetch.c63 } regs; member in struct:fetch_context
87 &context->regs.r64) < 0)
92 &context->regs.r64) < 0)
95 for (i = 0; i < sizeof(context->regs.r64)/8; ++i)
96 context->regs.r32[i] = context->regs.r64[i];
99 &context->regs.r32) < 0)
176 return ctx->regs.r32[reg_num];
178 return ctx->regs.r64[reg_num];
/external/oprofile/module/x86/
H A Dop_nmi.c46 asmlinkage void op_do_nmi(struct pt_regs * regs) argument
51 model->check_ctrs(cpu, msrs, regs);
H A Dop_syscalls.c115 asmlinkage static int my_sys_execve(struct pt_regs regs) argument
124 filename = getname((char *)regs.ebx);
129 ret = do_execve(filename, (char **)regs.ecx, (char **)regs.edx, &regs);
220 asmlinkage static int my_sys_fork(struct pt_regs regs) argument
228 ret = old_sys_fork(regs);
235 asmlinkage static int my_sys_vfork(struct pt_regs regs) argument
242 ret = old_sys_vfork(regs);
249 asmlinkage static int my_sys_clone(struct pt_regs regs) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosevents.c258 _kernel_swi_regs regs; local
261 if (_kernel_swi(OS_Mouse, &regs, &regs) == NULL)
263 Sint16 new_x = regs.r[0]; /* Initialy get as OS units */
264 Sint16 new_y = regs.r[1];
267 if (starting && regs.r[2] != 0)
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2])
288 regs.r[1] = (unsigned int)window_state;
289 _kernel_swi(Wimp_GetWindowState, &regs, &regs);
[all...]
H A DSDL_riscosmouse.c192 _kernel_swi_regs regs; local
199 regs.r[0] = (int)eig_block;
200 regs.r[1] = (int)eig_block;
201 _kernel_swi(OS_ReadVduVariables, &regs, &regs);
227 _kernel_swi_regs regs; local
233 regs.r[1] = (unsigned int)window_state;
234 _kernel_swi(Wimp_GetWindowState, &regs, &regs);
245 regs
264 _kernel_swi_regs regs; local
312 _kernel_swi_regs regs; local
[all...]
H A DSDL_wimpvideo.c201 _kernel_swi_regs regs; local
212 regs.r[0] = (int)vars;
213 regs.r[1] = (int)vals;
214 _kernel_swi(OS_ReadVduVariables, &regs, &regs);
249 _kernel_swi_regs regs; local
293 regs.r[1] = (unsigned int)(window_block);
296 if (_kernel_swi(Wimp_CreateWindow, &regs, &regs) == NULL)
298 this->hidden->window_handle = window_data[0] = regs
318 _kernel_swi_regs regs; local
327 _kernel_swi_regs regs; local
386 _kernel_swi_regs regs; local
428 _kernel_swi_regs regs; local
[all...]
/external/qemu-pc-bios/vgabios/tests/
H A Dtestbios.c39 void int10ax0003(struct REGPACK *regs) argument
41 regs->r_ax=0x0003;
42 intr(0x10,regs);
45 void int10ax02(struct REGPACK *regs) argument
47 regs->r_ax=0x0200;
48 regs->r_bx=0x0000;
49 regs->r_dx=0x1710;
50 intr(0x10,regs);
54 void int10ax03(struct REGPACK *regs) argument
56 regs
62 int10ax0501(struct REGPACK *regs) argument
72 int10ax0602(struct REGPACK *regs) argument
82 int10ax0702(struct REGPACK *regs) argument
92 int10ax08(struct REGPACK *regs) argument
99 int10ax09(struct REGPACK *regs) argument
114 int10ax0a(struct REGPACK *regs) argument
124 int10ax0f(struct REGPACK *regs) argument
132 int10ax1b(struct REGPACK *regs) argument
156 int10ax13(struct REGPACK *regs) argument
174 switch_50(struct REGPACK *regs) argument
186 exec_function(struct REGPACK *regs) argument
314 show_regs(struct REGPACK *regs) argument
329 struct REGPACK regs; local
339 struct REGPACK regs; local
[all...]
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-elf.c227 struct vki_user_regs_struct *regs; local
245 regs = (struct vki_user_regs_struct *)&(prs->pr_reg);
247 regs = (struct vki_user_regs_struct *)prs->pr_reg;
248 vg_assert(sizeof(*regs) == sizeof(prs->pr_reg));
252 regs->eflags = LibVEX_GuestX86_get_eflags( &arch->vex );
253 regs->esp = arch->vex.guest_ESP;
254 regs->eip = arch->vex.guest_EIP;
256 regs->ebx = arch->vex.guest_EBX;
257 regs->ecx = arch->vex.guest_ECX;
258 regs
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c398 static Bool get_Dwarf_Reg( /*OUT*/Addr* a, Word regno, RegSummary* regs )
400 vg_assert(regs);
402 if (regno == 5/*EBP*/) { *a = regs->fp; return True; }
403 if (regno == 4/*ESP*/) { *a = regs->sp; return True; }
405 if (regno == 6/*RBP*/) { *a = regs->fp; return True; }
406 if (regno == 7/*RSP*/) { *a = regs->sp; return True; }
408 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
410 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
412 if (regno == 13) { *a = regs->sp; return True; }
413 if (regno == 11) { *a = regs
474 evaluate_Dwarf3_Expr( UChar* expr, UWord exprszB, GExpr* fbGX, RegSummary* regs, const DebugInfo* di, Bool push_initial_zero ) argument
942 evaluate_GX( GExpr* gx, GExpr* fbGX, RegSummary* regs, const DebugInfo* di ) argument
[all...]

Completed in 530 milliseconds

1234567