HomeSort by relevance Sort by last modified time
    Searched defs:insn (Results 1 - 25 of 601) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/capstone/suite/regress/
invalid_read_in_print_operand.c 11 cs_insn *insn; local
12 cs_disasm(handle, (uint8_t *)BINARY, sizeof(BINARY) - 1, 0x1000, 0, &insn);
  /external/libpcap/
bpf_dump.c 32 const struct bpf_insn *insn; local
36 insn = p->bf_insns;
39 for (i = 0; i < n; ++insn, ++i) {
40 printf("%u %u %u %u\n", insn->code,
41 insn->jt, insn->jf, insn->k);
46 for (i = 0; i < n; ++insn, ++i)
48 insn->code, insn->jt, insn->jf, insn->k)
    [all...]
  /external/tcpdump/
bpf_dump.c 35 struct bpf_insn *insn; local
39 insn = p->bf_insns;
42 for (i = 0; i < n; ++insn, ++i) {
43 printf("%u %u %u %u\n", insn->code,
44 insn->jt, insn->jf, insn->k);
49 for (i = 0; i < n; ++insn, ++i)
51 insn->code, insn->jt, insn->jf, insn->k)
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
sparc.c 48 unsigned int insn; local
56 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
58 if (insn & CALL)
66 dest_pc = pc + (((bfd_signed_vma) (insn & 0x3fffffff)
aarch64.c 51 unsigned int insn; local
61 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
64 if ((insn & BRANCH_MASK) == BRANCH_PATTERN)
71 offset = ((((bfd_vma) insn & 0x3ffffff) ^ 0x2000000) - 0x2000000) << 2;
alpha.c 96 unsigned int insn; local
112 insn = bfd_get_32 (core_bfd, ((unsigned char *) core_text_space
114 switch (insn & (0x3fU << 26))
125 if ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
126 || (insn & (3 << 14)) == Jxx_FUNC_JSR_COROUTINE << 14)
131 ((insn & (3 << 14)) == Jxx_FUNC_JSR << 14
146 dest_pc = pc + 4 + (((bfd_signed_vma) (insn & 0x1fffff)
  /art/tools/dexfuzz/src/dexfuzz/program/
MInsn.java 29 public Instruction insn; field in class:MInsn
48 newInsn.insn = insn.clone();
62 insn.toString());
  /external/capstone/contrib/cs_driver/cs_driver/
cs_driver.c 46 cs_insn *insn; local
73 (uint64_t)&cs_driver_hello, 0, &insn);
77 printf("0x%p\t%s\t\t%s\n", (void *)(uintptr_t)insn[j].address,
78 insn[j].mnemonic, insn[j].op_str);
80 cs_free(insn, count);
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 42 public void encode(DecodedInstruction insn, CodeOutput out) {
43 out.write(insn.getOpcodeUnit());
59 public void encode(DecodedInstruction insn, CodeOutput out) {
60 out.write(insn.getOpcodeUnit());
78 public void encode(DecodedInstruction insn, CodeOutput out) {
80 codeUnit(insn.getOpcodeUnit(),
81 makeByte(insn.getA(), insn.getB())));
99 public void encode(DecodedInstruction insn, CodeOutput out) {
101 codeUnit(insn.getOpcodeUnit()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
HighRegisterPrefix.java 61 for (SimpleInsn insn : insns) {
62 result += insn.codeSize();
73 for (SimpleInsn insn : insns) {
74 insn.writeTo(out);
120 SimpleInsn insn = moveInsnFor(src, outAt); local
126 sb.append(insn.listingString0(noteIndices));
BlockAddresses.java 21 import com.android.dexgen.rop.code.Insn;
133 Insn insn = one.getInsns().get(0); local
135 starts[label] = new CodeAddress(insn.getPosition());
  /dalvik/dx/src/com/android/dx/dex/code/
HighRegisterPrefix.java 60 for (SimpleInsn insn : insns) {
61 result += insn.codeSize();
72 for (SimpleInsn insn : insns) {
73 insn.writeTo(out);
119 SimpleInsn insn = moveInsnFor(src, outAt); local
125 sb.append(insn.listingString0(noteIndices));
BlockAddresses.java 21 import com.android.dx.rop.code.Insn;
133 Insn insn = one.getInsns().get(0); local
135 starts[label] = new CodeAddress(insn.getPosition());
  /external/capstone/suite/benchmark/
test_iter_benchmark.c 60 cs_insn *insn; local
79 insn = cs_malloc(handle);
84 while(cs_disasm_iter(handle, &code, &size, &address, insn)) {
88 cs_free(insn, 1);
  /external/mesa3d/src/intel/tools/
disasm.c 57 brw_inst *insn = assembly + offset; local
59 bool compacted = brw_inst_cmpt_control(devinfo, insn);
64 brw_compact_inst *compacted = (void *)insn;
67 ((uint32_t *)insn)[1],
68 ((uint32_t *)insn)[0]);
72 insn = &uncompacted;
77 ((uint32_t *)insn)[3],
78 ((uint32_t *)insn)[2],
79 ((uint32_t *)insn)[1],
80 ((uint32_t *)insn)[0])
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
itbl-test.c 39 unsigned int insn; local
81 insn = itbl_assemble (name, p);
82 if (insn == 0)
87 printf ("line %d: insn(%s) = 0x%x)\n", aline, s, insn);
88 if (!itbl_disassemble (buf, insn))
90 "(0x%x)\n", aline, insn);
92 printf ("line %d: disasm(0x%x) = %s)\n", aline, insn, buf);
  /toolchain/binutils/binutils-2.27/opcodes/
i370-dis.c 36 i370_insn_t insn; local
47 /* Cast the bytes into the insn (in a host-endian indep way). */
48 insn.i[0] = (buffer[0] << 24) & 0xff000000;
49 insn.i[0] |= (buffer[1] << 16) & 0xff0000;
50 insn.i[0] |= (buffer[2] << 8) & 0xff00;
51 insn.i[0] |= buffer[3] & 0xff;
52 insn.i[1] = (buffer[4] << 24) & 0xff000000;
53 insn.i[1] |= (buffer[5] << 16) & 0xff0000;
66 masked = insn;
86 insn.i[0] >>= 16
    [all...]
alpha-dis.c 63 unsigned insn, op, isa_mask; local
100 /* Read the insn into a host word */
109 insn = bfd_getl32 (buffer);
113 op = AXP_OP (insn);
119 if ((insn ^ opcode->opcode) & opcode->mask)
134 (*operand->extract) (insn, &invalid);
145 (*info->fprintf_func) (info->stream, ".long %#08x", insn);
169 value = (*operand->extract) (insn, (int *) NULL);
172 value = (insn >> operand->shift) & ((1 << operand->bits) - 1);
i860-dis.c 97 unsigned int insn, i; local
110 insn = bfd_getl32 (buff);
117 if ((insn & opcode->match) == opcode->match
118 && (insn & opcode->lose) == 0)
129 (*info->fprintf_func) (info->stream, ".long %#08x", insn);
138 if (((insn & 0xfc000000) == 0x48000000
139 || (insn & 0xfc000000) == 0xb0000000)
140 && (insn & 0x200))
152 grnames[(insn >> 11) & 0x1f]);
158 grnames[(insn >> 21) & 0x1f])
    [all...]
m10200-dis.c 30 unsigned long insn,
67 if ((op->mask & insn) == op->opcode
88 value = (insn & 0xffff) << 8;
93 value = ((insn >> (operand->shift))
110 value = ((insn >> (operand->shift + extra_shift))
117 value = ((insn >> (operand->shift + extra_shift))
157 (*info->fprintf_func) (info->stream, _("unknown\t0x%04lx"), insn);
165 unsigned long insn; local
177 insn = *(unsigned char *) buffer;
180 if ((insn & 0xf0) == 0x0
    [all...]
spu-dis.c 54 get_index_for_opcode (unsigned int insn)
57 unsigned int opcode = insn >> (32-11);
99 unsigned int insn; local
110 insn = bfd_getb32 (buffer);
112 op_index = get_index_for_opcode (insn);
116 (*info->fprintf_func) (info->stream, ".long 0x%x", insn);
128 int fb = (insn >> (32-18)) & 0x7f;
149 DECODE_INSN_RT (insn));
153 DECODE_INSN_RA (insn));
157 DECODE_INSN_RB (insn));
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
InstructionTest.java 112 final Instruction insn = new Instruction(new InsnNode(Opcodes.NOP), local
114 insn.setPredecessor(next, 0);
115 next = insn;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_nvc0.h 60 : insn(use), tex(tex), after(after), level(-1) { }
61 Instruction *insn; member in struct:nv50_ir::NVC0LegalizePostRA::TexUse
  /external/valgrind/tests/
power_insn_available.c 11 /* If the insn that got queried for: exists */
13 /* If the insn that got queried for: does not exist on this platform */
15 /* If the insn that got queried for: does not exist in the vocabulary of this program */
76 char *insn; local
78 fprintf(stderr, "usage: power_insn_available <insn>\n" );
82 insn = argv[1];
83 if (strcmp (insn, "dcbzl") == 0)
86 /* power_insn_available has not been taught anything about this insn yet. */
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
FieldFlagChanger.java 110 Instruction insn = fieldInsns.get(fieldInsnIdx).insn; local
111 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) insn.info.format;
112 int fieldIdx = containsPoolIndex.getPoolIndex(insn);
136 Instruction insn = fieldInsns.get(mutation.fieldInsnIdx).insn; local
137 ContainsPoolIndex containsPoolIndex = (ContainsPoolIndex) insn.info.format;
138 int fieldIdx = containsPoolIndex.getPoolIndex(insn);
156 Opcode opcode = mInsn.insn.info.opcode;
158 Instruction insn = mInsn.insn local
    [all...]

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 91011>>