HomeSort by: relevance | last modified time | path
    Searched defs:imm2 (Results 1 - 19 of 19) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/arch/
arm-get-next-pcs.c 123 int sign, j1, j2, imm1, imm2; local
128 imm2 = bits (insn2, 0, 10);
133 offset += (imm1 << 12) + (imm2 << 1);
445 int j1, j2, imm1, imm2; local
448 imm2 = bits (inst2, 0, 10);
452 unsigned long offset = ((imm1 << 12) + (imm2 << 1));
471 int sign, j1, j2, imm1, imm2; local
475 imm2 = bits (inst2, 0, 10);
481 offset += (imm1 << 12) + (imm2 << 1);
  /src/external/gpl3/gdb.old/dist/gdb/arch/
arm-get-next-pcs.c 124 int sign, j1, j2, imm1, imm2; local
129 imm2 = bits (insn2, 0, 10);
134 offset += (imm1 << 12) + (imm2 << 1);
446 int j1, j2, imm1, imm2; local
449 imm2 = bits (inst2, 0, 10);
453 unsigned long offset = ((imm1 << 12) + (imm2 << 1));
472 int sign, j1, j2, imm1, imm2; local
476 imm2 = bits (inst2, 0, 10);
482 offset += (imm1 << 12) + (imm2 << 1);
  /src/external/gpl3/gdb/dist/sim/arm/
thumbemu.c 1150 /* LDRB<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}] => 1111 1000 0001 rrrr */
1206 // STRB<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1259 // LDR<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1301 // STR<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1359 // LDRH<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1361 ARMword imm2 = ntBITS (4, 5); local
1365 address = state->Reg[Rn] + (state->Reg[Rm] << imm2);
1404 // STRH<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1406 ARMword imm2 = ntBITS (4, 5); local
1410 address = state->Reg[Rn] + (state->Reg[Rm] << imm2);
1486 ARMword imm2 = ntBITS (4,5); local
1539 ARMword imm2 = ntBITS (4,5); local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/arm/
thumbemu.c 1150 /* LDRB<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}] => 1111 1000 0001 rrrr */
1206 // STRB<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1259 // LDR<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1301 // STR<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1359 // LDRH<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1361 ARMword imm2 = ntBITS (4, 5); local
1365 address = state->Reg[Rn] + (state->Reg[Rm] << imm2);
1404 // STRH<c>.W <Rt>,[<Rn>,<Rm>{,LSL #<imm2>}]
1406 ARMword imm2 = ntBITS (4, 5); local
1410 address = state->Reg[Rn] + (state->Reg[Rm] << imm2);
1486 ARMword imm2 = ntBITS (4,5); local
1539 ARMword imm2 = ntBITS (4,5); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
thead.cc 117 HOST_WIDE_INT imm2 = offset1 >> shamt; local
120 gcc_assert (imm2 >= 0 && imm2 < 4);
121 gcc_assert ((imm2 << shamt) == offset1);
136 output_operands[3] = gen_rtx_CONST_INT (mode, imm2);
208 HOST_WIDE_INT imm2 = offset >> shamt; local
210 if (imm2 < 0 || imm2 >= 4)
213 if ((imm2 << shamt) != offset)
483 /* The offset is calculated as (sign_extend(imm5) << imm2) */
    [all...]
  /src/sys/arch/amd64/amd64/
db_disasm.c 1190 int imm2; local
1509 get_value_inc(imm2, loc, 2, false); /* segment */
1510 db_format_radix(tbuf, 24, (unsigned int)imm2, true);
  /src/sys/arch/i386/i386/
db_disasm.c 1131 int imm2; local
1416 get_value_inc(imm2, loc, 2, false); /* segment */
1417 db_format_radix(tbuf, 24, (unsigned int)imm2, true);
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeARM_32.c 1168 sljit_uw imm2; local
1211 imm2 = SRC2_IMM | ((imm >> 8) & 0xff) | (((rol + 8) & 0xf) << 8);
1234 imm2 = SRC2_IMM | (imm >> 24) | ((rol & 0xf) << 8);
1264 imm2 = SRC2_IMM | (imm >> 24) | ((rol & 0xf) << 8);
1270 FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(positive ? ORR_DP : BIC_DP, 0, reg, reg, imm2)));
  /src/sys/netinet/
ip_carp.c 1977 struct in6_multi_mship *imm, *imm2; local
2004 if ((imm2 = in6_joingroup(&sc->sc_if,
2015 if (imm2)
2016 LIST_INSERT_HEAD(&im6o->im6o_memberships, imm2,
  /src/external/gpl3/binutils/dist/gas/config/
tc-sparc.c 3097 int imm2 = 0;
3100 if (! parse_const_expr_arg (&s, &imm2))
3102 error_message = _(": non-immdiate imm2 operand");
3105 if ((imm2 & ~0x3) != 0)
3107 error_message = _(": imm2 immediate operand out of range (0-3)");
3111 opcode |= ((imm2 & 0x2) << 3) | (imm2 & 0x1);
3086 int imm2 = 0; local
tc-arm.c 3511 unsigned imm2 = 0; local
3516 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3521 imm1 = imm2;
3522 imm2 = inst.operands[1].imm;
3561 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
3629 pool->literals[entry].X_add_number = imm2;
7230 #define po_imm1_or_imm2_or_fail(imm1, imm2, popt) \
7240 if (exp.X_add_number != imm1 && exp.X_add_number != imm2) \
  /src/external/gpl3/binutils/dist/opcodes/
aarch64-opc.c 1270 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2;
1272 if (imm1->imm < imm2->imm)
1274 if (imm1->imm > imm2->imm)
1268 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2; local
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-sparc.c 3096 int imm2 = 0;
3099 if (! parse_const_expr_arg (&s, &imm2))
3101 error_message = _(": non-immdiate imm2 operand");
3104 if ((imm2 & ~0x3) != 0)
3106 error_message = _(": imm2 immediate operand out of range (0-3)");
3110 opcode |= ((imm2 & 0x2) << 3) | (imm2 & 0x1);
3085 int imm2 = 0; local
tc-arm.c 3510 unsigned imm2 = 0; local
3515 imm2 = (inst.operands[1].regisimm ? inst.operands[1].reg
3520 imm1 = imm2;
3521 imm2 = inst.operands[1].imm;
3560 && (pool->literals[entry + 1].X_add_number == (offsetT) imm2)
3628 pool->literals[entry].X_add_number = imm2;
7233 #define po_imm1_or_imm2_or_fail(imm1, imm2, popt) \
7243 if (exp.X_add_number != imm1 && exp.X_add_number != imm2) \
  /src/external/gpl3/binutils.old/dist/opcodes/
aarch64-opc.c 1261 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2;
1263 if (imm1->imm < imm2->imm)
1265 if (imm1->imm > imm2->imm)
1259 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2; local
  /src/external/gpl3/gdb/dist/opcodes/
aarch64-opc.c 1258 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2;
1260 if (imm1->imm < imm2->imm)
1262 if (imm1->imm > imm2->imm)
1256 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2; local
  /src/external/gpl3/gdb.old/dist/opcodes/
aarch64-opc.c 1231 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2;
1233 if (imm1->imm < imm2->imm)
1235 if (imm1->imm > imm2->imm)
1229 const simd_imm_encoding *imm2 = (const simd_imm_encoding *)i2; local
  /src/external/gpl3/gdb/dist/gdb/
arm-tdep.c 1179 int j1, j2, imm1, imm2; local
1182 imm2 = bits (inst2, 0, 10);
1186 offset = ((imm1 << 12) + (imm2 << 1));
  /src/external/gpl3/gdb.old/dist/gdb/
arm-tdep.c 1181 int j1, j2, imm1, imm2; local
1184 imm2 = bits (inst2, 0, 10);
1188 offset = ((imm1 << 12) + (imm2 << 1));

Completed in 126 milliseconds