Searched refs:instr (Results 1 - 25 of 83) sorted by relevance

1234

/macosx-10.10.1/dtrace-147/test/tst/i386/ustack/
H A Dtst.helper.c44 unsigned char instr[] = { local
53 *((int *)&instr[4]) = (uintptr_t)baz - (uintptr_t)&instr[8];
54 return ((*(int(*)(void))instr)() + 3);
/macosx-10.10.1/dtrace-147/test/tst/sparc/ustack/
H A Dtst.helper.c44 uint32_t instr[] = { local
52 instr[1] |= ((uintptr_t)baz - (uintptr_t)&instr[1]) >> 2;
54 return ((*(int(*)(void))instr)() + 3);
/macosx-10.10.1/apache-793/httpd/test/
H A Dtest_parser.c63 char instr[512]; local
67 while (gets(instr)) {
68 printf(" [%s] ==\n", instr);
69 field = instr;
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/i386/
H A Dinstr_size.c68 uchar_t **instr = p; local
70 ret = **instr;
71 *instr += 1;
86 dtrace_dis_isize(uchar_t *instr, dis_isize_t which, model_t model, int *rmindex) argument
94 x.d86_data = (void **)&instr;
112 dtrace_instr_size_isa(uchar_t *instr, model_t model, int *rmindex) argument
114 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, model, rmindex));
118 dtrace_instr_size(uchar_t *instr) argument
120 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, DATAMODEL_NATIVE,
H A Dfbt_x86.c84 #define FBT_JMP_SHORT_REL 0xeb /* Jump short, relative, displacement relative to next instr. */
85 #define FBT_JMP_NEAR_REL 0xe9 /* Jump near, relative, displacement relative to next instr. */
650 machine_inst_t *instr, *limit, theInstr, i1, i2, i3; local
653 for (j = 0, instr = symbolStart, theInstr = 0;
654 (j < 4) && ((uintptr_t)instr >= instrLow) && (instrHigh > (uintptr_t)(instr + 2));
656 theInstr = instr[0];
660 if ((size = dtrace_instr_size(instr)) <= 0)
663 instr += size;
669 i1 = instr[
[all...]
H A Ddtrace_subr_x86.c157 uint8_t instr, instr2; local
192 if (fuword8(pc - 1, &instr) == 0 && instr != FASTTRAP_INSTR && // neither single-byte INT3 (0xCC)
193 !(instr == 3 && fuword8(pc - 2, &instr2) == 0 && instr2 == 0xCD)) { // nor two-byte INT 3 (0xCD03)
H A Dfasttrap_isa.c266 uint8_t instr[FASTTRAP_MAX_INSTR_SIZE + 10]; local
286 if (uread(p, &instr[0], first, pc) != 0)
289 uread(p, &instr[first], len - first, pc + first) != 0) {
290 bzero(&instr[first], len - first);
297 if ((size = dtrace_instr_size_isa(instr, p_model, &rmindex)) <= 0)
323 switch (instr[start]) {
367 if (p_model == DATAMODEL_LP64 && (instr[start] & 0xf0) == 0x40)
368 rex = instr[start++];
374 bcopy(instr, tp->ftt_instr, FASTTRAP_MAX_INSTR_SIZE);
377 if (instr[star
638 fasttrap_instr_t instr = FASTTRAP_INSTR; local
649 uint8_t instr; local
[all...]
/macosx-10.10.1/ntp-92/html/hints/
H A Dsolaris.xtra.patchfreq60 instr=`echo setcpudelay+34?X | adb $kernel | cut -d: -f 2 | nawk '{ print $1 }'`
62 if [ $instr = $nop ]; then
65 let masked="(16#$store_mask & 16#$instr) - 16#$store"
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_cg.c45 dt_cg_node_alloc(uint_t label, dif_instr_t instr) argument
53 dip->di_instr = instr;
92 dif_instr_t instr = DIF_INSTR_SETX((uint_t)intoff, reg); local
100 dt_irlist_append(dlp, dt_cg_node_alloc(lbl, instr));
188 dif_instr_t instr; local
214 instr = DIF_INSTR_FMT(op, dreg, sreg, dreg);
215 dt_irlist_append(dlp, dt_cg_node_alloc(DT_LBL_NONE, instr));
241 dif_instr_t instr; local
275 instr = DIF_INSTR_FMT(DIF_OP_SLL, r1, r2, r1);
276 dt_irlist_append(dlp, dt_cg_node_alloc(DT_LBL_NONE, instr));
327 dif_instr_t instr; local
408 dif_instr_t instr; local
474 dif_instr_t instr; local
533 dif_instr_t instr; local
582 dif_instr_t instr; local
625 dif_instr_t instr; local
684 dif_instr_t instr; local
768 dif_instr_t instr; local
813 dif_instr_t instr; local
852 dif_instr_t instr; local
887 dif_instr_t instr; local
923 dif_instr_t instr; local
958 dif_instr_t instr; local
982 dif_instr_t instr; local
1143 dif_instr_t instr; local
1221 dif_instr_t instr; local
1356 dif_instr_t instr; local
1912 dif_instr_t instr; local
[all...]
H A Ddt_isadep_x86.c427 uchar_t *instr; member in struct:dtrace_dis
437 int ret = *dis->instr;
440 fasttrap_instr_query_t instr; local
442 instr.ftiq_pid = dis->pid;
443 instr.ftiq_pc = dis->addr;
453 if (ioctl(dis->dtp->dt_ftfd, FASTTRAPIOC_GETINSTR, &instr) == 0) {
454 ret = instr.ftiq_instr;
455 *dis->instr = instr.ftiq_instr; // Prevent false jump table detection
460 dis->instr
465 dt_instr_size(uchar_t *instr, dtrace_hdl_t *dtp, pid_t pid, uint64_t addr, char dmodel) argument
[all...]
H A Ddt_as.c67 dlp->dl_len++; /* don't count forward refs in instr count */
322 dif_instr_t instr = dp->dtdo_buf[i]; local
323 uint_t op = DIF_INSTR_OP(instr);
326 if (DIF_INSTR_SUBR(instr) == DIF_SUBR_COPYOUT ||
327 DIF_INSTR_SUBR(instr) == DIF_SUBR_COPYOUTSTR)
333 assert(DIF_INSTR_LABEL(instr) < dlp->dl_label);
335 labels[DIF_INSTR_LABEL(instr)]);
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A Dcodegen-diff13 my ($addr, $bytes, $instr) = ($1, $2, $4);
16 $instr =~ s/\s*(.*\S)\s*/$1/;
17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
33 my ($addr, $bytes, $instr) = ($1, $3, $2);
37 $instr =~ s/\s*(.*\S)\s*/$1/;
38 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/MBlaze/Disassembler/
H A DMBlazeDisassembler.h41 MCDisassembler::DecodeStatus getInstruction(MCInst &instr,
H A DMBlazeDisassembler.cpp503 MCDisassembler::DecodeStatus MBlazeDisassembler::getInstruction(MCInst &instr, argument
530 instr.setOpcode(opcode);
548 instr.addOperand(MCOperand::CreateReg(RD));
549 instr.addOperand(MCOperand::CreateReg(RB));
550 instr.addOperand(MCOperand::CreateReg(RA));
556 instr.addOperand(MCOperand::CreateReg(RD));
557 instr.addOperand(MCOperand::CreateReg(RA));
558 instr.addOperand(MCOperand::CreateReg(RB));
564 instr.addOperand(MCOperand::CreateReg(RD));
565 instr
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CellSPU/
H A DSPUNopFiller.cpp61 SPUOpPlace getOpPlacement( MachineInstr &instr );
136 // Figure out if 'instr' is executed in the even or odd pipeline
138 SPUNopFiller::getOpPlacement( MachineInstr &instr ) {
139 int sc = instr.getDesc().getSchedClass();
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/Disassembler/
H A DX86Disassembler.h118 DecodeStatus getInstruction(MCInst &instr,
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dfts.c369 register int instr; local
381 instr = p->fts_instr;
385 if (instr == FTS_AGAIN) {
396 if (instr == FTS_FOLLOW &&
413 if (instr == FTS_SKIP ||
564 fts_set(sp, p, instr)
567 int instr;
569 if (instr && instr != FTS_AGAIN && instr !
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dcurses.c1027 VARARR(char, instr, 2*MB_CUR_MAX+1);
1030 char instr[3]; local
1114 ret = wctomb(instr, (wchar_t)wi);
1116 instr[0] = Meta;
1117 instr[1] = '\0' ^ 32;
1118 instr[2] = '\0';
1120 (void)metafy(instr, ret, META_NOALLOC);
1125 *instr = '\0';
1140 *instr = '\0';
1143 instr[
1397 char instr[3]; local
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dauth2-chall.c250 char *name, *instr, **prompts; local
255 &name, &instr, &kbdintctxt->nreq, &prompts, &echo_on))
260 packet_put_cstring(instr);
275 xfree(instr);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/MC/
H A DMCDisassembler.h66 /// @param instr - An MCInst to populate with the contents of the
80 virtual DecodeStatus getInstruction(MCInst& instr,
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dutfconv.h170 * This function takes an UTF-8 input string, instr, of inlen bytes
174 * are not supported (i.e. instr != outstr). Both buffers must reside
192 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp66 virtual DecodeStatus getInstruction(MCInst &instr,
85 virtual DecodeStatus getInstruction(MCInst &instr,
274 MipsDisassembler::getInstruction(MCInst &instr, argument
288 Result = decodeInstruction(DecoderTableMips32, instr, Insn, Address,
299 Mips64Disassembler::getInstruction(MCInst &instr, argument
313 Result = decodeInstruction(DecoderTableMips6432, instr, Insn, Address,
320 Result = decodeInstruction(DecoderTableMips32, instr, Insn, Address,
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dtext.c42 atf_text_for_each_word(const char *instr, const char *sep, argument
49 str = strdup(instr);
/macosx-10.10.1/vim-55/src/proto/
H A Dos_mswin.pro25 int utf8_to_utf16 __ARGS((char_u *instr, int inlen, short_u *outstr, int *unconvlenp));
26 int utf16_to_utf8 __ARGS((short_u *instr, int inlen, char_u *outstr));
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Dlockstat.c196 uint8_t instr; local
197 instr = (active ? NOP : RET );
198 (void) ml_nofault_copy( (vm_offset_t)&instr, *(assembly_probes[i].lsap_patch_point),
199 sizeof(instr));

Completed in 224 milliseconds

1234