HomeSort by relevance Sort by last modified time
    Searched defs:imm8 (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c 1449 uint8_t imm8; local
    [all...]
  /art/runtime/
disassembler_arm.cc 353 uint32_t imm8 = instr & 0xFF; local
357 args << Rd << ", " << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
360 args << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
518 uint32_t imm8 = instr & 0xFF; local
524 args << d << " .. " << (d + imm8);
527 args << d << ", [" << Rn << ", #" << imm8 << "]"; local
530 args << Rn << ", " << d << " .. " << (d + imm8);
616 uint32_t imm8 = instr & 0xFF; local
617 int32_t imm32 = (i << 11) | (imm3 << 8) | imm8;
680 uint32_t imm8 = instr & 0xFF local
697 uint32_t imm8 = instr & 0xFF; local
864 uint32_t imm8 = instr & 0xFF; local
865 args << Rt << ", [" << Rn << ",#" << imm8 << "]"; local
886 uint32_t imm8 = instr & 0xFF; local
1018 uint32_t imm8 = instr & 0xFF; local
1020 args << Rt << ", [" << Rn << ", #" << imm8 << "]"; local
1105 uint16_t imm8 = instr & 0xFF; local
1112 args << Rn << ", #" << imm8; local
1174 uint16_t imm8 = instr & 0xFF; local
1201 uint16_t imm8 = instr & 0xFF; local
1226 int8_t imm8 = instr & 0xFF; local
1234 int imm8 = instr & 0xFF; local
1330 uint16_t imm8 = instr & 0xFF; local
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_prvt.h 198 #define imm8 {OpndKind_Imm, OpndSize_8, OpndExt_Any, RegName_Null} macro
  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 585 int imm8 = -1; local
600 imm8 = 1;
602 imm8 = *(data+2);
609 if (imm8 > 0) {
610 AppendToBuffer("%d", imm8);
1211 int8_t imm8 = static_cast<int8_t>(data[1]); local
1221 int8_t imm8 = static_cast<int8_t>(data[1]); local
1231 int8_t imm8 = static_cast<int8_t>(data[1]); local
1241 int8_t imm8 = static_cast<int8_t>(data[1]); local
1312 int8_t imm8 = static_cast<int8_t>(data[1]); local
1341 int8_t imm8 = static_cast<int8_t>(data[1]); local
    [all...]
assembler-ia32.cc 576 void Assembler::mov_b(const Operand& dst, int8_t imm8) {
580 EMIT(imm8);
810 void Assembler::cmpb(const Operand& op, int8_t imm8) {
818 EMIT(imm8);
1031 void Assembler::rcl(Register dst, uint8_t imm8) {
1033 ASSERT(is_uint5(imm8)); // illegal shift count
1034 if (imm8 == 1) {
1040 EMIT(imm8);
1045 void Assembler::rcr(Register dst, uint8_t imm8) {
1047 ASSERT(is_uint5(imm8)); // illegal shift coun
1193 uint8_t imm8 = imm.x_; local
    [all...]
  /external/chromium_org/v8/src/x64/
disasm-x64.cc 746 int imm8 = -1; local
781 imm8 = 1;
783 imm8 = *(data + 2);
794 AppendToBuffer("%d", imm8);
1036 AppendToBuffer("extractps "); // reg/m32, xmm, imm8
1042 // roundsd xmm, xmm/m64, imm8
    [all...]
  /external/v8/src/ia32/
disasm-ia32.cc 583 int imm8 = -1; local
598 imm8 = 1;
600 imm8 = *(data+2);
607 if (imm8 > 0) {
608 AppendToBuffer("%d", imm8);
1200 int8_t imm8 = static_cast<int8_t>(data[1]); local
1210 int8_t imm8 = static_cast<int8_t>(data[1]); local
1220 int8_t imm8 = static_cast<int8_t>(data[1]); local
1230 int8_t imm8 = static_cast<int8_t>(data[1]); local
1293 int8_t imm8 = static_cast<int8_t>(data[1]); local
1314 int8_t imm8 = static_cast<int8_t>(data[1]); local
    [all...]
assembler-ia32.cc 585 void Assembler::mov_b(const Operand& dst, int8_t imm8) {
589 EMIT(imm8);
819 void Assembler::cmpb(const Operand& op, int8_t imm8) {
827 EMIT(imm8);
1040 void Assembler::rcl(Register dst, uint8_t imm8) {
1042 ASSERT(is_uint5(imm8)); // illegal shift count
1043 if (imm8 == 1) {
1049 EMIT(imm8);
1054 void Assembler::rcr(Register dst, uint8_t imm8) {
1056 ASSERT(is_uint5(imm8)); // illegal shift coun
1181 uint8_t imm8 = imm.x_; local
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 738 int imm8 = -1; local
773 imm8 = 1;
775 imm8 = *(data + 2);
786 AppendToBuffer("%d", imm8);
1028 AppendToBuffer("extractps "); // reg/m32, xmm, imm8
1034 // roundsd xmm, xmm/m64, imm8
    [all...]
  /art/compiler/utils/arm/
assembler_arm.cc 795 uint8_t imm8 = ((imm32 >> 31) << 7) | (((imm32 >> 29) & 1) << 6) | local
797 EmitVFPsss(cond, B23 | B21 | B20 | ((imm8 >> 4)*B16) | (imm8 & 0xf),
810 uint8_t imm8 = ((imm64 >> 63) << 7) | (((imm64 >> 61) & 1) << 6) | local
812 EmitVFPddd(cond, B23 | B21 | B20 | ((imm8 >> 4)*B16) | B8 | (imm8 & 0xf),
    [all...]
  /dalvik/vm/compiler/codegen/arm/
Assemble.cpp 2643 int imm8 = insn & 0xFF; local
    [all...]
  /dalvik/vm/compiler/codegen/mips/
Assemble.cpp 2017 int imm8 = insn & 0xFF; local
    [all...]
  /external/qemu/
arm-dis.c 3369 unsigned int bits = 0, imm, imm8, mod; local
    [all...]
  /external/valgrind/main/VEX/priv/
guest_amd64_helpers.c 3108 UInt imm8 = imm_and_return_control_bit & 7; local
3213 HWord imm8 = opc4_and_imm & 0xFF; local
    [all...]
host_amd64_isel.c 1808 IRExpr* imm8 = mi.bindee[2]; local
    [all...]
host_mips_defs.h 250 MIPSri84_I84 = 5, /* imm8 `ror` (2 * imm4) */
258 UShort imm8; member in struct:__anon29076::__anon29077::__anon29078
267 extern MIPSRI84 *MIPSRI84_I84(UShort imm8, UShort imm4);
host_arm_defs.h 153 ARMam2_RI=3, /* reg +/- imm8 */
229 ARMri84_I84=7, /* imm8 `ror` (2 * imm4) */
239 UShort imm8; member in struct:__anon28979::__anon28980::__anon28981
249 extern ARMRI84* ARMRI84_I84 ( UShort imm8, UShort imm4 );
284 /* imm8 = abcdefgh, B = NOT(b);
309 UInt imm8; member in struct:__anon28988
313 extern ARMNImm* ARMNImm_TI ( UInt type, UInt imm8 );
guest_x86_toIR.c 7198 Int alen, imm8; local
    [all...]
guest_arm_toIR.c 2615 UInt imm8 = SLICE_UInt(i1,7,0); local
11449 UInt imm8 = (INSN(19,16) << 4) | INSN(3,0); local
11465 UInt imm8 = (INSN(19,16) << 4) | INSN(3,0); local
13295 UInt imm8 = ((insn >> 4) & 0xF0) | (insn & 0xF); \/* 11:8, 3:0 *\/ local
14369 UInt imm8 = ((insn >> 4) & 0xF0) | (insn & 0xF); \/* 11:8, 3:0 *\/ local
15661 UInt imm8 = INSN0(7,0); local
16171 UInt imm8 = INSN0(7,0); local
16183 UInt imm8 = INSN0(7,0); local
16225 UInt imm8 = INSN0(7,0); local
16333 UInt imm8 = INSN0(7,0); local
17450 UInt imm8 = INSN1(7,0); local
17880 UInt imm8 = INSN1(7,0); local
18551 UInt imm8 = INSN1(7,0); local
18616 UInt imm8 = INSN1(7,0); local
18753 UInt imm8 = INSN1(7,0); local
    [all...]
guest_amd64_toIR.c 8710 UInt imm8; local
10681 UInt imm8; local
10735 UInt imm8; local
13279 Int imm8 = 0; local
17126 Int imm8; local
17560 Int imm8; local
17597 Int imm8; local
17633 Int imm8; local
17722 Int imm8; local
17753 UInt imm8; local
17858 Int imm8; local
17891 Int imm8; local
17923 Int imm8; local
17961 Int imm8; local
21004 UInt imm8; local
21114 UInt imm8; local
23725 Int imm8; local
23769 Int imm8 = 0; local
23799 Int imm8 = 0; local
23829 Int imm8 = 0; local
23859 Int imm8 = 0; local
25291 UInt imm8 = 0; local
25321 UInt imm8 = 0; local
25349 UInt imm8 = 0; local
25382 UInt imm8 = 0; local
25420 UInt imm8 = 0; local
25722 UInt imm8; local
25753 UInt imm8; local
25787 UInt imm8; local
25818 UInt imm8; local
25852 UInt imm8; local
25890 UInt imm8; local
26035 Int imm8; local
26070 UInt imm8; local
26177 Int imm8; local
26207 Int imm8; local
26245 Int imm8; local
26276 Int imm8; local
26318 Int imm8; local
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 922 uint32_t imm8 = (imm32 << 2*rot) | (imm32 >> (32 - 2*rot)); local
923 if ((imm8 <= 0xff)) {
925 *immed_8 = imm8;
    [all...]

Completed in 501 milliseconds