HomeSort by: relevance | last modified time | path
    Searched defs:insn (Results 1 - 25 of 1141) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/libpcap/dist/
bpf_dump.c 37 const struct bpf_insn *insn; local
41 insn = p->bf_insns;
44 for (i = 0; i < n; ++insn, ++i) {
45 printf("%u %u %u %u\n", insn->code,
46 insn->jt, insn->jf, insn->k);
51 for (i = 0; i < n; ++insn, ++i)
53 insn->code, insn->jt, insn->jf, insn->k)
    [all...]
  /src/external/bsd/tcpdump/dist/
bpf_dump.c 38 struct bpf_insn *insn; local
42 insn = p->bf_insns;
45 for (i = 0; i < n; ++insn, ++i) {
46 printf("%u %u %u %u\n", insn->code,
47 insn->jt, insn->jf, insn->k);
52 for (i = 0; i < n; ++insn, ++i)
54 insn->code, insn->jt, insn->jf, insn->k)
    [all...]
  /src/external/gpl3/gdb/dist/sim/common/
sim-run.c 44 instruction_word insn = IMEM32 (cia); local
45 cia = idecode_issue (sd, insn, cia);
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-run.c 44 instruction_word insn = IMEM32 (cia); local
45 cia = idecode_issue (sd, insn, cia);
  /src/sys/arch/alpha/alpha/
patch.c 71 alpha_instruction insn = { local
82 *lock_stub_patch_table[i] = insn.bits;
  /src/external/gpl3/binutils/dist/gprof/
sparc.c 48 unsigned int insn; local
59 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
61 if (insn & CALL)
69 dest_pc = pc + (((bfd_signed_vma) (insn & 0x3fffffff)
aarch64.c 51 unsigned int insn; local
63 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
66 if ((insn & BRANCH_MASK) == BRANCH_PATTERN)
73 offset = ((((bfd_vma) insn & 0x3ffffff) ^ 0x2000000) - 0x2000000) << 2;
alpha.c 96 unsigned int insn; local
115 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
117 switch (insn & (0x3fU << 26))
128 if ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
129 || (insn & (3 << 14)) == Jxx_FUNC_JSR_COROUTINE << 14)
134 ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
149 dest_pc = pc + 4 + (((bfd_signed_vma) (insn & 0x1fffff)
  /src/external/gpl3/binutils.old/dist/gprof/
sparc.c 48 unsigned int insn; local
59 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
61 if (insn & CALL)
69 dest_pc = pc + (((bfd_signed_vma) (insn & 0x3fffffff)
aarch64.c 51 unsigned int insn; local
63 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
66 if ((insn & BRANCH_MASK) == BRANCH_PATTERN)
73 offset = ((((bfd_vma) insn & 0x3ffffff) ^ 0x2000000) - 0x2000000) << 2;
alpha.c 96 unsigned int insn; local
115 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
117 switch (insn & (0x3fU << 26))
128 if ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
129 || (insn & (3 << 14)) == Jxx_FUNC_JSR_COROUTINE << 14)
134 ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
149 dest_pc = pc + 4 + (((bfd_signed_vma) (insn & 0x1fffff)
  /src/external/gpl3/gcc/dist/libgcc/config/rs6000/
freebsd-unwind.h 52 unsigned int *insn local
54 if (insn && *insn == 0xE8410028)
  /src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
freebsd-unwind.h 52 unsigned int *insn local
54 if (insn && *insn == 0xE8410028)
  /src/external/gpl3/gcc/dist/gcc/config/rx/
rx-protos.h 77 /* The insn where sh_find_set_of_reg stopped looking.
78 Can be NULL_RTX if the end of the insn list was reached. */
79 rtx_insn* insn; member in struct:set_of_reg
90 Given a reg rtx and a start insn, try to find the insn that sets
91 the specified reg by using the specified insn stepping function,
92 such as 'prev_nonnote_nondebug_insn_bb'. When the insn is found,
95 rx_find_set_of_reg (rtx reg, rtx_insn* insn, F stepfunc,
99 result.insn = insn;
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
gcse-common.h 35 rtx_insn *insn; member in struct:gcse_note_stores_info
stack-ptr-mod.cc 82 rtx_insn *insn; local
89 FOR_BB_INSNS (bb, insn)
91 if (INSN_P (insn))
93 /* Check if insn modifies the stack pointer. */
94 note_stores (insn, notice_stack_pointer_modification_1, NULL);
init-regs.cc 38 These are of the form where two operands to an insn my not be the
63 rtx_insn *insn; local
68 FOR_BB_INSNS (bb, insn)
71 if (!NONDEBUG_INSN_P (insn))
74 FOR_EACH_INSN_USE (use, insn)
114 emit_insn_before (move_insn, insn);
117 "adding initialization in %s of reg %d at in block %d for insn %d.\n",
119 INSN_UID (insn));
  /src/external/gpl3/gcc.old/dist/gcc/config/rx/
rx-protos.h 77 /* The insn where sh_find_set_of_reg stopped looking.
78 Can be NULL_RTX if the end of the insn list was reached. */
79 rtx_insn* insn; member in struct:set_of_reg
90 Given a reg rtx and a start insn, try to find the insn that sets
91 the specified reg by using the specified insn stepping function,
92 such as 'prev_nonnote_nondebug_insn_bb'. When the insn is found,
95 rx_find_set_of_reg (rtx reg, rtx_insn* insn, F stepfunc,
99 result.insn = insn;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
gcse-common.h 35 rtx_insn *insn; member in struct:gcse_note_stores_info
stack-ptr-mod.cc 82 rtx_insn *insn; local
89 FOR_BB_INSNS (bb, insn)
91 if (INSN_P (insn))
93 /* Check if insn modifies the stack pointer. */
94 note_stores (insn, notice_stack_pointer_modification_1, NULL);
  /src/external/gpl3/gdb/dist/gdb/arch/
arm-linux.c 111 unsigned int insn local
114 if (bits (insn, 28, 31) == INST_NV)
116 if (bits (insn, 25, 27) == 0x5) /* BLX <label> */
121 if (bits (insn, 24, 27) == 0xb /* BL <label> */
122 || bits (insn, 4, 27) == 0x12fff3 /* BLX Rm */)
  /src/external/gpl3/gdb.old/dist/gdb/arch/
arm-linux.c 111 unsigned int insn local
114 if (bits (insn, 28, 31) == INST_NV)
116 if (bits (insn, 25, 27) == 0x5) /* BLX <label> */
121 if (bits (insn, 24, 27) == 0xb /* BL <label> */
122 || bits (insn, 4, 27) == 0x12fff3 /* BLX Rm */)
  /src/external/gpl3/gcc/dist/gcc/config/avr/
avr-log.cc 52 L: insn list
182 rtx_insn *insn = safe_as_a <rtx_insn *> (va_arg (ap, rtx)); local
184 while (insn)
186 print_inline_rtx (file, insn, 0);
188 insn = NEXT_INSN (insn);
  /src/external/gpl3/gcc/dist/gcc/config/epiphany/
mode-switch-use.cc 34 #include "insn-attr.h"
46 void (*target_insert_mode_switch_use) (rtx_insn *insn, int, int)
52 rtx_insn *insn; local
57 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
59 if (!INSN_P (insn))
61 mode = epiphany_mode_needed (e, insn, {});
66 target_insert_mode_switch_use (insn, e, mode)
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
unwind-dw2-execute_cfa.h 41 reflected at the point immediately before the call insn.
47 unsigned char insn = *insn_ptr++; variable
51 if ((insn & 0xc0) == DW_CFA_advance_loc)
52 fs->pc += (insn & 0x3f) * CODE_ALIGN;
53 else if ((insn & 0xc0) == DW_CFA_offset)
55 reg = insn & 0x3f;
65 else if ((insn & 0xc0) == DW_CFA_restore)
67 reg = insn & 0x3f;
72 else switch (insn)

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>