HomeSort by relevance Sort by last modified time
    Searched refs:next_insn (Results 1 - 11 of 11) sorted by null

  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 316 uint32_t next_insn = GetInsn(code, literal_offset + 4u); local
318 CheckValidReg(next_insn & 0x1fu); // Check destination register.
320 CHECK_EQ(next_insn & 0xffc003e0u, 0xb9400000u | (base_reg << 5));
325 uint32_t next_insn = GetInsn(code, literal_offset + 4u); local
328 CheckValidReg(next_insn & 0x1fu); // Check destination register.
330 CHECK_EQ(next_insn & 0xffe0ffe0u, 0xb8607800u | (base_reg << 5));
331 CheckValidReg((next_insn >> 16) & 0x1f); // Check index register
576 uint32_t next_insn = GetInsn(code, literal_offset + 4u); local
583 if ((next_insn & 0xffc00000) == 0xb9400000 &&
584 (((next_insn >> 5) ^ adrp) & 0x1f) == 0)
    [all...]
  /art/compiler/linker/arm/
relative_patcher_thumb2.cc 119 uint32_t next_insn = GetInsn32(code, literal_offset + 4u); local
121 CheckValidReg((next_insn >> 12) & 0xfu); // Check destination register.
123 CHECK_EQ(next_insn & 0xffff0000u, 0xf8d00000u | (base_reg << 16));
126 uint32_t next_insn = GetInsn16(code, literal_offset + 4u); local
128 CheckValidReg(next_insn & 0x7u); // Check destination register.
130 CHECK_EQ(next_insn & 0xf838u, 0x6800u | (base_reg << 3));
136 uint32_t next_insn = GetInsn32(code, literal_offset + 4u); local
138 CheckValidReg((next_insn >> 12) & 0xfu); // Check destination register.
140 CHECK_EQ(next_insn & 0xffff0ff0u, 0xf8500020u | (base_reg << 16));
141 CheckValidReg(next_insn & 0xf); // Check index registe
    [all...]
  /external/libunwind/src/ia64/
Gscript.c 519 struct ia64_script_insn *ip, *limit, next_insn; local
529 next_insn = *ip;
534 opc = next_insn.opc;
535 dst = next_insn.dst;
536 val = next_insn.val;
537 next_insn = *ip;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_emit.c 813 #define next_insn brw_next_insn macro
837 brw_inst *insn = next_insn(p, opcode);
851 brw_inst *insn = next_insn(p, opcode);
873 brw_inst *inst = next_insn(p, opcode);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-cr16.c     [all...]
tc-crx.c     [all...]
tc-xtensa.c 3557 TInsn *next_insn = istack_push_space (istack); local
    [all...]
  /art/runtime/verifier/
method_verifier.h 668 * Control can transfer to "next_insn". Merge the registers from merge_line into the table at
669 * next_insn, and set the changed flag on the target address if any of the registers were changed.
674 bool UpdateRegisters(uint32_t next_insn, RegisterLine* merge_line, bool update_merge_line)
    [all...]
method_verifier.cc     [all...]
  /toolchain/binutils/binutils-2.25/bfd/
coff-sh.c 2447 unsigned int next_insn; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.h 363 /* FIXME: the "NEXT_INSN (PREV_INSN (X)) == X" condition shouldn't be needed.
370 && NEXT_INSN (PREV_INSN (X)) == X \
828 #define NEXT_INSN(INSN) XEXP (INSN, 2)
    [all...]

Completed in 1023 milliseconds