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

  /src/external/gpl3/gdb/dist/gdb/arch/
aarch64-insn.h 96 /* MOVK s111 0010 1xxi iiii iiii iiii iiir rrrr */
98 MOVK = 0x20000000 | MOV,
  /src/external/gpl3/gdb.old/dist/gdb/arch/
aarch64-insn.h 96 /* MOVK s111 0010 1xxi iiii iiii iiii iiir rrrr */
98 MOVK = 0x20000000 | MOV,
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeARM_64.c 100 #define MOVK 0xf2800000
141 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21)));
142 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21)));
143 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21));
149 SLJIT_ASSERT((inst[0] & 0xffe00000) == MOVZ && (inst[1] & 0xffe00000) == (MOVK | (1 << 21)));
151 inst[1] = MOVK | dst | (((new_imm >> 16) & 0xffff) << 5) | (1 << 21);
152 inst[2] = MOVK | dst | (((new_imm >> 32) & 0xffff) << 5) | (2 << 21);
153 inst[3] = MOVK | dst | ((new_imm >> 48) << 5) | (3 << 21);
308 buf_ptr[1] = MOVK | dst | (((addr >> 16) & 0xffff) << 5) | (1 << 21);
310 buf_ptr[2] = MOVK | dst | (((addr >> 32) & 0xffff) << 5) | (2 << 21)
    [all...]

Completed in 27 milliseconds