DynamoRIO
|
ARM-specific instruction creation convenience macros. More...
Macros | |
#define | OPND_CREATE_ABSMEM(addr, size) opnd_create_rel_addr(addr, size) |
#define | OPND_CREATE_NEG_REG(reg) opnd_create_reg_ex(reg, 0, DR_OPND_NEGATED) |
#define | OPND_CREATE_INT(val) OPND_CREATE_INTPTR(val) |
#define | OPND_CREATE_INT_MSR_NZCVQ() opnd_create_immed_int(EFLAGS_MSR_NZCVQ, OPSZ_4b) |
#define | OPND_CREATE_INT_MSR_G() opnd_create_immed_int(EFLAGS_MSR_G, OPSZ_4b) |
#define | OPND_CREATE_INT_MSR_NZCVQG() opnd_create_immed_int(EFLAGS_MSR_NZCVQG, OPSZ_4b) |
#define | OPND_CREATE_MEMLIST(base) opnd_create_base_disp(base, DR_REG_NULL, 0, 0, OPSZ_VAR_REGLIST) |
#define | INSTR_CREATE_pop(dc, Rd) |
#define | INSTR_CREATE_pop_list(dc, list_len, ...) INSTR_CREATE_ldm_wb((dc), OPND_CREATE_MEMLIST(DR_REG_XSP), list_len, __VA_ARGS__) |
#define | INSTR_CREATE_push(dc, Rt) |
#define | INSTR_CREATE_push_list(dc, list_len, ...) INSTR_CREATE_stmdb_wb((dc), OPND_CREATE_MEMLIST(DR_REG_XSP), list_len, __VA_ARGS__) |
#define | INSTR_CREATE_neg(dc, Rd, Rn) INSTR_CREATE_rsb((dc), (Rd), (Rn), OPND_CREATE_INT16(0)) |
Platform-independent macros | |
#define | XINST_CREATE_debug_instr(dc) INSTR_CREATE_bkpt((dc), OPND_CREATE_INT8(1)) |
#define | XINST_CREATE_load(dc, r, m) INSTR_CREATE_ldr((dc), (r), (m)) |
#define | XINST_CREATE_load_1byte_zext4(dc, r, m) INSTR_CREATE_ldrb((dc), (r), (m)) |
#define | XINST_CREATE_load_1byte(dc, r, m) INSTR_CREATE_ldrb((dc), (r), (m)) |
#define | XINST_CREATE_load_2bytes(dc, r, m) INSTR_CREATE_ldrh((dc), (r), (m)) |
#define | XINST_CREATE_store(dc, m, r) INSTR_CREATE_str((dc), (m), (r)) |
#define | XINST_CREATE_store_1byte(dc, m, r) INSTR_CREATE_strb((dc), (m), (r)) |
#define | XINST_CREATE_store_2bytes(dc, m, r) INSTR_CREATE_strh((dc), (m), (r)) |
#define | XINST_CREATE_store_pair(dc, m, r1, r2) INSTR_CREATE_strd((dc), (m), (r1), (r2)) |
#define | XINST_CREATE_load_pair(dc, r1, r2, m) INSTR_CREATE_ldrd((dc), (r1), (r2), (m)) |
#define | XINST_CREATE_move(dc, d, s) INSTR_CREATE_mov((dc), (d), (s)) |
#define | XINST_CREATE_load_simd(dc, r, m) INSTR_CREATE_vldr((dc), (r), (m)) |
#define | XINST_CREATE_store_simd(dc, m, r) INSTR_CREATE_vstr((dc), (m), (r)) |
#define | XINST_CREATE_jump_mem(dc, m) INSTR_CREATE_ldr((dc), opnd_create_reg(DR_REG_PC), (m)) |
#define | XINST_CREATE_jump_reg(dc, r) INSTR_CREATE_bx((dc), (r)) |
#define | XINST_CREATE_load_int(dc, r, i) |
#define | XINST_CREATE_return(dc) INSTR_CREATE_pop(dc, opnd_create_reg(DR_REG_PC)) |
#define | XINST_CREATE_jump(dc, t) INSTR_CREATE_b((dc), (t)) |
#define | XINST_CREATE_call(dc, t) INSTR_CREATE_bl((dc), (t)) |
#define | XINST_CREATE_jump_short(dc, t) |
#define | XINST_CREATE_jump_cond(dc, pred, t) (INSTR_PRED(INSTR_CREATE_b((dc), (t)), (pred))) |
#define | XINST_CREATE_add(dc, d, s) INSTR_CREATE_add((dc), (d), (d), (s)) |
#define | XINST_CREATE_add_2src(dc, d, s1, s2) INSTR_CREATE_add((dc), (d), (s1), (s2)) |
#define | XINST_CREATE_add_sll(dc, d, s1, s2_toshift, shift_amount) |
#define | XINST_CREATE_add_s(dc, d, s) INSTR_CREATE_adds((dc), (d), (d), (s)) |
#define | XINST_CREATE_sub(dc, d, s) INSTR_CREATE_sub((dc), (d), (d), (s)) |
#define | XINST_CREATE_sub_s(dc, d, s) INSTR_CREATE_subs((dc), (d), (d), (s)) |
#define | XINST_CREATE_and_s(dc, d, s) INSTR_CREATE_ands((dc), (d), (d), (s)) |
#define | XINST_CREATE_slr_s(dc, d, s) INSTR_CREATE_lsrs((dc), (d), (d), (s)) |
#define | XINST_CREATE_cmp(dc, s1, s2) INSTR_CREATE_cmp((dc), (s1), (s2)) |
#define | XINST_CREATE_interrupt(dc, i) INSTR_CREATE_svc(dc, (i)) |
#define | XINST_CREATE_nop(dc) INSTR_CREATE_nop(dc) |
#define | XINST_CREATE_call_reg(dc, r) INSTR_CREATE_blx_ind(dc, r) |
Signature: (pc) | |
#define | INSTR_CREATE_b_short(dc, pc) instr_create_0dst_1src((dc), OP_b_short, (pc)) |
#define | INSTR_CREATE_b(dc, pc) instr_create_0dst_1src((dc), OP_b, (pc)) |
#define | INSTR_CREATE_b_short(dc, pc) instr_create_0dst_1src((dc), OP_b_short, (pc)) |
#define | INSTR_CREATE_bl(dc, pc) instr_create_1dst_1src((dc), OP_bl, opnd_create_reg(DR_REG_LR), (pc)) |
#define | INSTR_CREATE_blx(dc, pc) instr_create_1dst_1src((dc), OP_blx, opnd_create_reg(DR_REG_LR), (pc)) |
Signature: () | |
#define | INSTR_CREATE_clrex(dc) instr_create_0dst_0src((dc), OP_clrex) |
#define | INSTR_CREATE_dcps1(dc) instr_create_0dst_0src((dc), OP_dcps1) |
#define | INSTR_CREATE_dcps2(dc) instr_create_0dst_0src((dc), OP_dcps2) |
#define | INSTR_CREATE_dcps3(dc) instr_create_0dst_0src((dc), OP_dcps3) |
#define | INSTR_CREATE_enterx(dc) instr_create_0dst_0src((dc), OP_enterx) |
#define | INSTR_CREATE_eret(dc) instr_create_0dst_1src((dc), OP_eret, opnd_create_reg(DR_REG_LR)) |
#define | INSTR_CREATE_leavex(dc) instr_create_0dst_0src((dc), OP_leavex) |
#define | INSTR_CREATE_nop(dc) instr_create_0dst_0src((dc), OP_nop) |
#define | INSTR_CREATE_sev(dc) instr_create_0dst_0src((dc), OP_sev) |
#define | INSTR_CREATE_sevl(dc) instr_create_0dst_0src((dc), OP_sevl) |
#define | INSTR_CREATE_wfe(dc) instr_create_0dst_0src((dc), OP_wfe) |
#define | INSTR_CREATE_wfi(dc) instr_create_0dst_0src((dc), OP_wfi) |
#define | INSTR_CREATE_yield(dc) instr_create_0dst_0src((dc), OP_yield) |
Signature: (Rd) | |
#define | INSTR_CREATE_vmrs(dc, Rd) instr_create_1dst_1src((dc), OP_vmrs, (Rd), opnd_create_reg(DR_REG_FPSCR)) |
Signature: (Rm) | |
#define | INSTR_CREATE_blx_ind(dc, Rm) instr_create_1dst_1src((dc), OP_blx_ind, opnd_create_reg(DR_REG_LR), (Rm)) |
#define | INSTR_CREATE_bx(dc, Rm) instr_create_0dst_1src((dc), OP_bx, (Rm)) |
#define | INSTR_CREATE_bxj(dc, Rm) instr_create_0dst_1src((dc), OP_bxj, (Rm)) |
Signature: (Rt) | |
#define | INSTR_CREATE_vmsr(dc, Rt) instr_create_1dst_1src((dc), OP_vmsr, opnd_create_reg(DR_REG_FPSCR), (Rt)) |
Signature: (Rd, Rm) | |
#define | INSTR_CREATE_clz(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_clz, (Rd), (Rm)) |
#define | INSTR_CREATE_rbit(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_rbit, (Rd), (Rm)) |
#define | INSTR_CREATE_rev(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_rev, (Rd), (Rm)) |
#define | INSTR_CREATE_rev16(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_rev16, (Rd), (Rm)) |
#define | INSTR_CREATE_revsh(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_revsh, (Rd), (Rm)) |
#define | INSTR_CREATE_rrx(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_rrx, (Rd), (Rm)) |
#define | INSTR_CREATE_rrxs(dc, Rd, Rm) instr_create_1dst_1src((dc), OP_rrxs, (Rd), (Rm)) |
Signature: (Rd, Rn) | |
#define | INSTR_CREATE_sxtb(dc, Rd, Rn) instr_create_1dst_1src((dc), OP_sxtb, (Rd), (Rn)) |
#define | INSTR_CREATE_sxth(dc, Rd, Rn) instr_create_1dst_1src((dc), OP_sxth, (Rd), (Rn)) |
#define | INSTR_CREATE_uxtb(dc, Rd, Rn) instr_create_1dst_1src((dc), OP_uxtb, (Rd), (Rn)) |
#define | INSTR_CREATE_uxth(dc, Rd, Rn) instr_create_1dst_1src((dc), OP_uxth, (Rd), (Rn)) |
Signature: (pc, Rn) | |
#define | INSTR_CREATE_cbnz(dc, pc, Rn) instr_create_0dst_2src((dc), OP_cbnz, (pc), (Rn)) |
#define | INSTR_CREATE_cbz(dc, pc, Rn) instr_create_0dst_2src((dc), OP_cbz, (pc), (Rn)) |
Signature: (Rd, statreg) | |
#define | INSTR_CREATE_mrs(dc, Rd, statreg) instr_create_1dst_1src((dc), OP_mrs, (Rd), (statreg)) |
Signature: (Rd, Rm, Rn) | |
#define | INSTR_CREATE_qsub(dc, Rd, Rm, Rn) instr_create_1dst_2src((dc), OP_qsub, (Rd), (Rm), (Rn)) |
Signature: (Rd, Rn, Rm) | |
#define | INSTR_CREATE_crc32b(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32b, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_crc32cb(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32cb, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_crc32ch(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32ch, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_crc32cw(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32cw, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_crc32h(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32h, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_crc32w(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_crc32w, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_mul(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_mul, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_muls(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_muls, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qadd(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qadd, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qdadd(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qdadd, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qdsub(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qdsub, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qsax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qsax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qsub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qsub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_qsub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_qsub8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_sadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_sadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_sadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_sadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_sasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_sasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_sdiv(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_sdiv, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_sel(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_sel, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shsax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shsax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shsub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shsub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_shsub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_shsub8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smmul(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smmul, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smmulr(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smmulr, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smuad(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smuad, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smuadx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smuadx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smulbb(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smulbb, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smulbt(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smulbt, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smultb(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smultb, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smultt(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smultt, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smulwb(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smulwb, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smulwt(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smulwt, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smusd(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smusd, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_smusdx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_smusdx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_ssax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_ssax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_ssub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_ssub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_ssub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_ssub8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_udiv(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_udiv, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhsax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhsax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhsub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhsub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uhsub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uhsub8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqadd16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqadd16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqadd8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqadd8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqasx(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqasx, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqsax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqsax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqsub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqsub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_uqsub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_uqsub8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_usad8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_usad8, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_usax(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_usax, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_usub16(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_usub16, (Rd), (Rn), (Rm)) |
#define | INSTR_CREATE_usub8(dc, Rd, Rn, Rm) instr_create_1dst_2src((dc), OP_usub8, (Rd), (Rn), (Rm)) |
Signature: (Rd, Rn, Rm, Ra) | |
#define | INSTR_CREATE_mla(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_mla, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_mlas(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_mlas, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_mls(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_mls, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlabb(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlabb, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlabt(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlabt, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlad(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlad, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smladx(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smladx, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlatb(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlatb, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlatt(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlatt, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlawb(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlawb, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlawt(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlawt, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlsd(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlsd, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smlsdx(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smlsdx, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smmla(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smmla, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smmlar(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smmlar, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smmls(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smmls, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_smmlsr(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_smmlsr, (Rd), (Rn), (Rm), (Ra)) |
#define | INSTR_CREATE_usada8(dc, Rd, Rn, Rm, Ra) instr_create_1dst_3src((dc), OP_usada8, (Rd), (Rn), (Rm), (Ra)) |
Signature: (Rd, Rd2, Rn, Rm) | |
#define | INSTR_CREATE_smlal(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlalbb(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlalbb, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlalbt(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlalbt, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlald(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlald, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlaldx(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlaldx, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlals(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlals, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlaltb(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlaltb, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlaltt(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlaltt, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlsld(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlsld, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smlsldx(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_smlsldx, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smull(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_2src((dc), OP_smull, (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_smulls(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_2src((dc), OP_smulls, (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_umaal(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_umaal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_umlal(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_umlal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_umlals(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_4src((dc), OP_umlals, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_umull(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_2src((dc), OP_umull, (Rd), (Rd2), (Rn), (Rm)) |
#define | INSTR_CREATE_umulls(dc, Rd, Rd2, Rn, Rm) instr_create_2dst_2src((dc), OP_umulls, (Rd), (Rd2), (Rn), (Rm)) |
Signature: (imm) | |
#define | INSTR_CREATE_bkpt(dc, imm) instr_create_0dst_1src((dc), OP_bkpt, (imm)) |
#define | INSTR_CREATE_cps(dc, imm) instr_create_0dst_1src((dc), OP_cps, (imm)) |
#define | INSTR_CREATE_cpsid(dc, imm) instr_create_0dst_1src((dc), OP_cpsid, (imm)) |
#define | INSTR_CREATE_cpsie(dc, imm) instr_create_0dst_1src((dc), OP_cpsie, (imm)) |
#define | INSTR_CREATE_dbg(dc, imm) instr_create_0dst_1src((dc), OP_dbg, (imm)) |
#define | INSTR_CREATE_dmb(dc, imm) instr_create_0dst_1src((dc), OP_dmb, (imm)) |
#define | INSTR_CREATE_dsb(dc, imm) instr_create_0dst_1src((dc), OP_dsb, (imm)) |
#define | INSTR_CREATE_eret_imm(dc, imm) instr_create_0dst_2src((dc), OP_eret, opnd_create_reg(DR_REG_LR), (imm)) |
#define | dr_ir_macros_arm_hlt(dc, imm) instr_create_0dst_1src((dc), OP_hlt, (imm)) |
#define | dr_ir_macros_arm_hvc(dc, imm) instr_create_0dst_1src((dc), OP_hvc, (imm)) |
#define | INSTR_CREATE_isb(dc, imm) instr_create_0dst_1src((dc), OP_isb, (imm)) |
#define | INSTR_CREATE_setend(dc, imm) instr_create_0dst_1src((dc), OP_setend, (imm)) |
#define | INSTR_CREATE_smc(dc, imm) instr_create_0dst_1src((dc), OP_smc, (imm)) |
#define | INSTR_CREATE_svc(dc, imm) instr_create_0dst_1src((dc), OP_svc, (imm)) |
#define | INSTR_CREATE_udf(dc, imm) instr_create_0dst_1src((dc), OP_udf, (imm)) |
Signature: (Rd, imm) | |
#define | INSTR_CREATE_movt(dc, Rd, imm) instr_create_1dst_1src((dc), OP_movt, (Rd), (imm)) |
#define | INSTR_CREATE_movw(dc, Rd, imm) instr_create_1dst_1src((dc), OP_movw, (Rd), (imm)) |
#define | INSTR_CREATE_mrs_priv(dc, Rd, imm) instr_create_1dst_1src((dc), OP_mrs_priv, (Rd), (imm)) |
#define | INSTR_CREATE_vmrs_imm(dc, Rd, imm) instr_create_1dst_1src((dc), OP_vmrs, (Rd), (imm)) |
Signature: (Rt, imm) | |
#define | INSTR_CREATE_vmsr_imm(dc, Rt, imm) instr_create_0dst_2src((dc), OP_vmsr, (Rt), (imm)) |
Signature: (imm, Rm) | |
#define | INSTR_CREATE_msr_priv(dc, imm, Rm) instr_create_0dst_2src((dc), OP_msr_priv, (imm), (Rm)) |
Signature: (imm, imm2) | |
#define | INSTR_CREATE_cpsid_noflags(dc, imm, imm2) instr_create_0dst_2src((dc), OP_cpsid, (imm), (imm2)) |
#define | INSTR_CREATE_cpsie_noflags(dc, imm, imm2) instr_create_0dst_2src((dc), OP_cpsie, (imm), (imm2)) |
#define | INSTR_CREATE_it(dc, imm, imm2) instr_create_0dst_2src((dc), OP_it, (imm), (imm2)) |
Signature: (Rd, Rm_or_imm) | |
#define | INSTR_CREATE_mov(dc, Rd, Rm_or_imm) instr_create_1dst_1src((dc), OP_mov, (Rd), (Rm_or_imm)) |
#define | INSTR_CREATE_movs(dc, Rd, Rm_or_imm) instr_create_1dst_1src((dc), OP_movs, (Rd), (Rm_or_imm)) |
#define | INSTR_CREATE_mvn(dc, Rd, Rm_or_imm) |
#define | INSTR_CREATE_mvns(dc, Rd, Rm_or_imm) |
Signature: (Rn, Rm_or_imm) | |
#define | INSTR_CREATE_cmn(dc, Rn, Rm_or_imm) |
#define | INSTR_CREATE_cmp(dc, Rn, Rm_or_imm) |
#define | INSTR_CREATE_teq(dc, Rn, Rm_or_imm) |
#define | INSTR_CREATE_tst(dc, Rn, Rm_or_imm) |
Signature: (Rd, Rm, imm) | |
#define | INSTR_CREATE_sxtb16(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_sxtb16, (Rd), (Rm), (imm)) |
#define | INSTR_CREATE_sxtb_imm(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_sxtb, (Rd), (Rm), (imm)) |
#define | INSTR_CREATE_sxth_imm(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_sxth, (Rd), (Rm), (imm)) |
#define | INSTR_CREATE_uxtb16(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_uxtb16, (Rd), (Rm), (imm)) |
#define | INSTR_CREATE_uxtb_imm(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_uxtb, (Rd), (Rm), (imm)) |
#define | INSTR_CREATE_uxth_imm(dc, Rd, Rm, imm) instr_create_1dst_2src((dc), OP_uxth, (Rd), (Rm), (imm)) |
Signature: (Rd, Rn, imm) | |
#define | INSTR_CREATE_addw(dc, Rd, Rn, imm) instr_create_1dst_2src((dc), OP_addw, (Rd), (Rn), (imm)) |
#define | INSTR_CREATE_subw(dc, Rd, Rn, imm) instr_create_1dst_2src((dc), OP_subw, (Rd), (Rn), (imm)) |
Signature: (Rd, imm, Rm) | |
#define | INSTR_CREATE_ssat16(dc, Rd, imm, Rm) instr_create_1dst_2src((dc), OP_ssat16, (Rd), (imm), (Rm)) |
#define | INSTR_CREATE_usat16(dc, Rd, imm, Rm) instr_create_1dst_2src((dc), OP_usat16, (Rd), (imm), (Rm)) |
Signature: (Rd, imm, imm2) | |
#define | INSTR_CREATE_bfc(dc, Rd, imm, imm2) instr_create_1dst_3src((dc), OP_bfc, (Rd), (imm), (imm2), (Rd)) |
Signature: (Rd, Rn, Rm_or_imm) | |
#define | INSTR_CREATE_adc(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_adcs(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_add(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_adds(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_and(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_ands(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_asr(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_asr, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_asrs(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_asrs, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_bic(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_bics(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_eor(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_eors(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_lsl(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_lsl, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_lsls(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_lsls, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_lsr(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_lsr, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_lsrs(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_lsrs, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_orn(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_orns(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_orr(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_orrs(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_ror(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_ror, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_rors(dc, Rd, Rn, Rm_or_imm) instr_create_1dst_2src((dc), OP_rors, (Rd), (Rn), (Rm_or_imm)) |
#define | INSTR_CREATE_rsb(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_rsbs(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_rsc(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_rscs(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_sbc(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_sbcs(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_sub(dc, Rd, Rn, Rm_or_imm) |
#define | INSTR_CREATE_subs(dc, Rd, Rn, Rm_or_imm) |
Signature: (Rd, statreg, imm) | |
#define | INSTR_CREATE_mrs_priv_spsr(dc, Rd, statreg, imm) instr_create_1dst_2src((dc), OP_mrs_priv, (Rd), (statreg), (imm)) |
Signature: (statreg, imm, Rm) | |
#define | INSTR_CREATE_msr_priv_spsr(dc, statreg, imm, Rm) instr_create_1dst_2src((dc), OP_msr_priv, (statreg), (imm), (Rm)) |
Signature: (statreg, imm, imm2) | |
#define | INSTR_CREATE_msr_imm(dc, statreg, imm, imm2) instr_create_1dst_2src((dc), OP_msr, (statreg), (imm), (imm2)) |
Signature: (statreg, imm_msr, Rm) | |
#define | INSTR_CREATE_msr(dc, statreg, imm_msr, Rm) instr_create_1dst_2src((dc), OP_msr, (statreg), (imm_msr), (Rm)) |
Signature: (Rd, Rn, Rm, imm) | |
#define | INSTR_CREATE_sxtab(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_sxtab, (Rd), (Rn), (Rm), (imm)) |
#define | INSTR_CREATE_sxtab16(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_sxtab16, (Rd), (Rn), (Rm), (imm)) |
#define | INSTR_CREATE_sxtah(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_sxtah, (Rd), (Rn), (Rm), (imm)) |
#define | INSTR_CREATE_uxtab(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_uxtab, (Rd), (Rn), (Rm), (imm)) |
#define | INSTR_CREATE_uxtab16(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_uxtab16, (Rd), (Rn), (Rm), (imm)) |
#define | INSTR_CREATE_uxtah(dc, Rd, Rn, Rm, imm) instr_create_1dst_3src((dc), OP_uxtah, (Rd), (Rn), (Rm), (imm)) |
Signature: (Rd, Rm, imm, imm2) | |
#define | INSTR_CREATE_bfi(dc, Rd, Rm, imm, imm2) instr_create_1dst_4src((dc), OP_bfi, (Rd), (Rm), (imm), (imm2), (Rd)) |
#define | INSTR_CREATE_sbfx(dc, Rd, Rm, imm, imm2) instr_create_1dst_3src((dc), OP_sbfx, (Rd), (Rm), (imm), (imm2)) |
#define | INSTR_CREATE_ubfx(dc, Rd, Rm, imm, imm2) instr_create_1dst_3src((dc), OP_ubfx, (Rd), (Rm), (imm), (imm2)) |
Signature: (Rd, Rm, shift, Rs) | |
#define | INSTR_CREATE_mvn_shreg(dc, Rd, Rm, shift, Rs) |
#define | INSTR_CREATE_mvns_shreg(dc, Rd, Rm, shift, Rs) |
Signature: (Rn, Rm, shift, Rs) | |
#define | INSTR_CREATE_cmn_shreg(dc, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_cmp_shreg(dc, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_teq_shreg(dc, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_tst_shreg(dc, Rn, Rm, shift, Rs) |
Signature: (Rd, Rn, Rm, shift, Rs) | |
#define | INSTR_CREATE_adc_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_adcs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_add_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_adds_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_and_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_ands_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_bic_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_bics_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_eor_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_eors_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_orr_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_orrs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_rsb_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_rsbs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_rsc_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_rscs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_sbc_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_sbcs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_sub_shreg(dc, Rd, Rn, Rm, shift, Rs) |
#define | INSTR_CREATE_subs_shreg(dc, Rd, Rn, Rm, shift, Rs) |
Signature: (Rd, Rm, shift, imm) | |
#define | INSTR_CREATE_mvn_shimm(dc, Rd, Rm, shift, imm) |
#define | INSTR_CREATE_mvns_shimm(dc, Rd, Rm, shift, imm) |
Signature: (Rn, Rm, shift, imm) | |
#define | INSTR_CREATE_cmn_shimm(dc, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_cmp_shimm(dc, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_teq_shimm(dc, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_tst_shimm(dc, Rn, Rm, shift, imm) |
Signature: (Rd, Rn, Rm, shift, imm) | |
#define | INSTR_CREATE_adc_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_adcs_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_add_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_adds_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_and_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_ands_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_bic_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_bics_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_eor_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_eors_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_orn_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_orns_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_orr_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_orrs_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_pkhbt_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_pkhtb_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_rsb_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_rsbs_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_rsc_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_rscs_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_sbc_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_sbcs_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_sub_shimm(dc, Rd, Rn, Rm, shift, imm) |
#define | INSTR_CREATE_subs_shimm(dc, Rd, Rn, Rm, shift, imm) |
Signature: (Rd, imm, Rm, shift, imm2) | |
#define | INSTR_CREATE_ssat_shimm(dc, Rd, imm, Rm, shift, imm2) |
#define | INSTR_CREATE_usat_shimm(dc, Rd, imm, Rm, shift, imm2) |
Signature: (mem) | |
#define | INSTR_CREATE_pld(dc, mem) instr_create_0dst_1src((dc), OP_pld, (mem)) |
#define | INSTR_CREATE_pldw(dc, mem) instr_create_0dst_1src((dc), OP_pldw, (mem)) |
#define | INSTR_CREATE_pli(dc, mem) instr_create_0dst_1src((dc), OP_pli, (mem)) |
#define | INSTR_CREATE_tbb(dc, mem) instr_create_0dst_1src((dc), OP_tbb, (mem)) |
#define | INSTR_CREATE_tbh(dc, mem) instr_create_0dst_1src((dc), OP_tbh, (mem)) |
Signature: (Rd, mem) | |
#define | INSTR_CREATE_lda(dc, Rd, mem) instr_create_1dst_1src((dc), OP_lda, (Rd), (mem)) |
#define | INSTR_CREATE_ldab(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldab, (Rd), (mem)) |
#define | INSTR_CREATE_ldaex(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldaex, (Rd), (mem)) |
#define | INSTR_CREATE_ldaexb(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldaexb, (Rd), (mem)) |
#define | INSTR_CREATE_ldaexh(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldaexh, (Rd), (mem)) |
#define | INSTR_CREATE_ldah(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldah, (Rd), (mem)) |
#define | INSTR_CREATE_ldr(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldr, (Rd), (mem)) |
#define | INSTR_CREATE_ldrb(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrb, (Rd), (mem)) |
#define | INSTR_CREATE_ldrbt(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrbt, (Rd), (mem)) |
#define | INSTR_CREATE_ldrex(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrex, (Rd), (mem)) |
#define | INSTR_CREATE_ldrexb(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrexb, (Rd), (mem)) |
#define | INSTR_CREATE_ldrexh(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrexh, (Rd), (mem)) |
#define | INSTR_CREATE_ldrh(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrh, (Rd), (mem)) |
#define | INSTR_CREATE_ldrht(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrht, (Rd), (mem)) |
#define | INSTR_CREATE_ldrsb(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrsb, (Rd), (mem)) |
#define | INSTR_CREATE_ldrsbt(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrsbt, (Rd), (mem)) |
#define | INSTR_CREATE_ldrsh(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrsh, (Rd), (mem)) |
#define | INSTR_CREATE_ldrsht(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrsht, (Rd), (mem)) |
#define | INSTR_CREATE_ldrt(dc, Rd, mem) instr_create_1dst_1src((dc), OP_ldrt, (Rd), (mem)) |
Signature: (mem, Rm) | |
#define | INSTR_CREATE_stl(dc, mem, Rm) instr_create_1dst_1src((dc), OP_stl, (mem), (Rm)) |
#define | INSTR_CREATE_stlb(dc, mem, Rm) instr_create_1dst_1src((dc), OP_stlb, (mem), (Rm)) |
#define | INSTR_CREATE_stlh(dc, mem, Rm) instr_create_1dst_1src((dc), OP_stlh, (mem), (Rm)) |
Signature: (mem, Rt) | |
#define | INSTR_CREATE_str(dc, mem, Rt) instr_create_1dst_1src((dc), OP_str, (mem), (Rt)) |
#define | INSTR_CREATE_strb(dc, mem, Rt) instr_create_1dst_1src((dc), OP_strb, (mem), (Rt)) |
#define | INSTR_CREATE_strbt(dc, mem, Rt) instr_create_1dst_1src((dc), OP_strbt, (mem), (Rt)) |
#define | INSTR_CREATE_strh(dc, mem, Rt) instr_create_1dst_1src((dc), OP_strh, (mem), (Rt)) |
#define | INSTR_CREATE_strht(dc, mem, Rt) instr_create_1dst_1src((dc), OP_strht, (mem), (Rt)) |
#define | INSTR_CREATE_strt(dc, mem, Rt) instr_create_1dst_1src((dc), OP_strt, (mem), (Rt)) |
Signature: (statreg, mem) | |
#define | INSTR_CREATE_rfe(dc, statreg, mem) instr_create_1dst_1src((dc), OP_rfe, (statreg), (mem)) |
#define | INSTR_CREATE_rfe_wb(dc, statreg, mem) |
#define | INSTR_CREATE_rfeda(dc, statreg, mem) instr_create_1dst_1src((dc), OP_rfeda, (statreg), (mem)) |
#define | INSTR_CREATE_rfeda_wb(dc, statreg, mem) |
#define | INSTR_CREATE_rfedb(dc, statreg, mem) instr_create_1dst_1src((dc), OP_rfedb, (statreg), (mem)) |
#define | INSTR_CREATE_rfedb_wb(dc, statreg, mem) |
#define | INSTR_CREATE_rfeib(dc, statreg, mem) instr_create_1dst_1src((dc), OP_rfeib, (statreg), (mem)) |
#define | INSTR_CREATE_rfeib_wb(dc, statreg, mem) |
Signature: (Rd, Rd2, mem) | |
#define | INSTR_CREATE_ldaexd(dc, Rd, Rd2, mem) instr_create_2dst_1src((dc), OP_ldaexd, (Rd), (Rd2), (mem)) |
#define | INSTR_CREATE_ldrd(dc, Rd, Rd2, mem) instr_create_2dst_1src((dc), OP_ldrd, (Rd), (Rd2), (mem)) |
#define | INSTR_CREATE_ldrexd(dc, Rd, Rd2, mem) instr_create_2dst_1src((dc), OP_ldrexd, (Rd), (Rd2), (mem)) |
Signature: (Rd, mem, Rm) | |
#define | INSTR_CREATE_ldrh_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_ldrht_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_ldrsb_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_ldrsbt_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_ldrsh_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_ldrsht_wbreg(dc, Rd, mem, Rm) |
#define | INSTR_CREATE_swp(dc, Rd, mem, Rm) instr_create_2dst_2src((dc), OP_swp, (mem), (Rd), (mem), (Rm)) |
#define | INSTR_CREATE_swpb(dc, Rd, mem, Rm) instr_create_2dst_2src((dc), OP_swpb, (mem), (Rd), (mem), (Rm)) |
Signature: (mem, Rd, Rm) | |
#define | INSTR_CREATE_stlex(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_stlex, (mem), (Rd), (Rm)) |
#define | INSTR_CREATE_stlexb(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_stlexb, (mem), (Rd), (Rm)) |
#define | INSTR_CREATE_stlexh(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_stlexh, (mem), (Rd), (Rm)) |
#define | INSTR_CREATE_strex(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_strex, (mem), (Rd), (Rm)) |
#define | INSTR_CREATE_strexb(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_strexb, (mem), (Rd), (Rm)) |
#define | INSTR_CREATE_strexh(dc, mem, Rd, Rm) instr_create_2dst_1src((dc), OP_strexh, (mem), (Rd), (Rm)) |
Signature: (mem, Rt, Rm) | |
#define | INSTR_CREATE_strh_wbreg(dc, mem, Rt, Rm) |
#define | INSTR_CREATE_strht_wbreg(dc, mem, Rt, Rm) |
Signature: (mem, Rt, Rt2) | |
#define | INSTR_CREATE_strd(dc, mem, Rt, Rt2) instr_create_1dst_2src((dc), OP_strd, (mem), (Rt), (Rt2)) |
Signature: (Rd, Rd2, mem, Rm) | |
#define | INSTR_CREATE_ldrd_wbreg(dc, Rd, Rd2, mem, Rm) |
Signature: (mem, Rd, Rt, Rt2) | |
#define | INSTR_CREATE_stlexd(dc, mem, Rd, Rt, Rt2) instr_create_2dst_2src((dc), OP_stlexd, (mem), (Rd), (Rt), (Rt2)) |
#define | INSTR_CREATE_strexd(dc, mem, Rd, Rt, Rt2) instr_create_2dst_2src((dc), OP_strexd, (mem), (Rd), (Rt), (Rt2)) |
Signature: (mem, Rt, Rt2, Rm) | |
#define | INSTR_CREATE_strd_wbreg(dc, mem, Rt, Rt2, Rm) |
Signature: (Rd, mem, imm) | |
#define | INSTR_CREATE_ldr_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrb_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrbt_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrh_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrht_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrsb_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrsbt_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrsh_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrsht_wbimm(dc, Rd, mem, imm) |
#define | INSTR_CREATE_ldrt_wbimm(dc, Rd, mem, imm) |
Signature: (mem, Rt, imm) | |
#define | INSTR_CREATE_str_wbimm(dc, mem, Rt, imm) |
#define | INSTR_CREATE_strb_wbimm(dc, mem, Rt, imm) |
#define | INSTR_CREATE_strbt_wbimm(dc, mem, Rt, imm) |
#define | INSTR_CREATE_strh_wbimm(dc, mem, Rt, imm) |
#define | INSTR_CREATE_strht_wbimm(dc, mem, Rt, imm) |
#define | INSTR_CREATE_strt_wbimm(dc, mem, Rt, imm) |
Signature: (mem, imm, statreg) | |
#define | INSTR_CREATE_srs(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srs_wbimm(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsda(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsda_wbimm(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsdb(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsdb_wbimm(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsib(dc, mem, imm, statreg) |
#define | INSTR_CREATE_srsib_wbimm(dc, mem, imm, statreg) |
Signature: (Rd, Rd2, mem, imm) | |
#define | INSTR_CREATE_ldrd_wbimm(dc, Rd, Rd2, mem, imm) |
Signature: (mem, Rt, Rt2, imm) | |
#define | INSTR_CREATE_strd_wbimm(dc, mem, Rt, Rt2, imm) |
Signature: (Rd, mem, Rm, shift, imm) | |
#define | INSTR_CREATE_ldr_wbreg(dc, Rd, mem, Rm, shift, imm) |
#define | INSTR_CREATE_ldrb_wbreg(dc, Rd, mem, Rm, shift, imm) |
#define | INSTR_CREATE_ldrbt_wbreg(dc, Rd, mem, Rm, shift, imm) |
#define | INSTR_CREATE_ldrt_wbreg(dc, Rd, mem, Rm, shift, imm) |
Signature: (mem, Rt, Rm, shift, imm) | |
#define | INSTR_CREATE_str_wbreg(dc, mem, Rt, Rm, shift, imm) |
#define | INSTR_CREATE_strb_wbreg(dc, mem, Rt, Rm, shift, imm) |
#define | INSTR_CREATE_strbt_wbreg(dc, mem, Rt, Rm, shift, imm) |
#define | INSTR_CREATE_strt_wbreg(dc, mem, Rt, Rm, shift, imm) |
Signature: (mem, list_len, ...) | |
#define | INSTR_CREATE_ldm(dc, mem, list_len, ...) instr_create_Ndst_Msrc_vardst((dc), OP_ldm, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_ldm_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldm_priv_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldm_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmda(dc, mem, list_len, ...) instr_create_Ndst_Msrc_vardst((dc), OP_ldmda, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_ldmda_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmda_priv_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmda_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmdb(dc, mem, list_len, ...) instr_create_Ndst_Msrc_vardst((dc), OP_ldmdb, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_ldmdb_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmdb_priv_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmdb_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmib(dc, mem, list_len, ...) instr_create_Ndst_Msrc_vardst((dc), OP_ldmib, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_ldmib_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_ldmib_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stm(dc, mem, list_len, ...) instr_create_Ndst_Msrc_varsrc((dc), OP_stm, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_stm_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stm_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmda(dc, mem, list_len, ...) instr_create_Ndst_Msrc_varsrc((dc), OP_stmda, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_stmda_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmda_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmdb(dc, mem, list_len, ...) instr_create_Ndst_Msrc_varsrc((dc), OP_stmdb, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_stmdb_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmdb_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmib(dc, mem, list_len, ...) instr_create_Ndst_Msrc_varsrc((dc), OP_stmib, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_stmib_priv(dc, mem, list_len, ...) |
#define | INSTR_CREATE_stmib_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_8(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_8_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_8(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_8_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_8(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_8_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_8(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_8_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vldm(dc, mem, list_len, ...) instr_create_Ndst_Msrc_vardst((dc), OP_vldm, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_vldm_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vldmdb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vstm(dc, mem, list_len, ...) instr_create_Ndst_Msrc_varsrc((dc), OP_vstm, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
#define | INSTR_CREATE_vstm_wb(dc, mem, list_len, ...) |
#define | INSTR_CREATE_vstmdb(dc, mem, list_len, ...) |
Signature: (mem, Rm, list_len, ...) | |
#define | INSTR_CREATE_vld1_dup_8_wbreg(dc, mem, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_8_wbreg(dc, mem, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_8_wbreg(dc, mem, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_8_wbreg(dc, mem, Rm, list_len, ...) |
Signature: (mem, imm, list_len, ...) | |
#define | INSTR_CREATE_vld1_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_64(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_64_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_64(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_64_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst1_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst2_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_8_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_16(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_16_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_32(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_32_wbimm(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_8(dc, mem, imm, list_len, ...) |
#define | INSTR_CREATE_vst4_8_wbimm(dc, mem, imm, list_len, ...) |
Signature: (mem, imm, Rm, list_len, ...) | |
#define | INSTR_CREATE_vld1_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld1_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld1_64_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld1_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld1_dup_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_dup_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_dup_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_dup_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst1_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst1_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst1_64_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst1_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst3_lane_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_16_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_32_wbreg(dc, mem, imm, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_8_wbreg(dc, mem, imm, Rm, list_len, ...) |
Signature: (mem, imm, imm2, list_len, ...) | |
#define | INSTR_CREATE_vld2_lane_16(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_16_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_32(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_32_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_16(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_16_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_32(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_32_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_16(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_16_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_32(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_32_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_16(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_16_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_32(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_32_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_8(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_8_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_16(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_16_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_32(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_32_wbimm(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_8(dc, mem, imm, imm2, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_8_wbimm(dc, mem, imm, imm2, list_len, ...) |
Signature: (mem, imm, imm2, Rm, list_len, ...) | |
#define | INSTR_CREATE_vld2_lane_16_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vld2_lane_32_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_16_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vld3_lane_32_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_16_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vld4_lane_32_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_16_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_32_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst2_lane_8_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_16_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_32_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
#define | INSTR_CREATE_vst4_lane_8_wbreg(dc, mem, imm, imm2, Rm, list_len, ...) |
Signature: (Ra, Rd, imm, imm2, cpreg) | |
#define | INSTR_CREATE_mrrc(dc, Ra, Rd, imm, imm2, cpreg) instr_create_2dst_3src((dc), OP_mrrc, (Ra), (Rd), (imm), (imm2), (cpreg)) |
#define | INSTR_CREATE_mrrc2(dc, Ra, Rd, imm, imm2, cpreg) instr_create_2dst_3src((dc), OP_mrrc2, (Ra), (Rd), (imm), (imm2), (cpreg)) |
Signature: (cpreg, Rn, Rt, imm, imm2) | |
#define | INSTR_CREATE_mcrr(dc, cpreg, Rn, Rt, imm, imm2) instr_create_1dst_4src((dc), OP_mcrr, (cpreg), (Rn), (Rt), (imm), (imm2)) |
#define | INSTR_CREATE_mcrr2(dc, cpreg, Rn, Rt, imm, imm2) instr_create_1dst_4src((dc), OP_mcrr2, (cpreg), (Rn), (Rt), (imm), (imm2)) |
Signature: (cpreg, cpreg2, imm, imm2, Rt) | |
#define | INSTR_CREATE_mcr2(dc, cpreg, cpreg2, imm, imm2, Rt) instr_create_2dst_3src((dc), OP_mcr2, (cpreg), (cpreg2), (imm), (imm2), (Rt)) |
Signature: (cpreg, imm, imm2, cpreg2, cpreg3) | |
#define | INSTR_CREATE_cdp2(dc, cpreg, imm, imm2, cpreg2, cpreg3) instr_create_1dst_4src((dc), OP_cdp2, (cpreg), (imm), (imm2), (cpreg2), (cpreg3)) |
Signature: (Rd, imm, imm2, cpreg, cpreg2, imm3) | |
#define | INSTR_CREATE_mrc(dc, Rd, imm, imm2, cpreg, cpreg2, imm3) instr_create_1dst_5src((dc), OP_mrc, (Rd), (imm), (imm2), (cpreg), (cpreg2), (imm3)) |
#define | INSTR_CREATE_mrc2(dc, Rd, imm, imm2, cpreg, cpreg2, imm3) instr_create_1dst_5src((dc), OP_mrc2, (Rd), (imm), (imm2), (cpreg), (cpreg2), (imm3)) |
Signature: (cpreg, cpreg2, imm, imm2, Rt, imm3) | |
#define | INSTR_CREATE_mcr(dc, cpreg, cpreg2, imm, imm2, Rt, imm3) instr_create_2dst_4src((dc), OP_mcr, (cpreg), (cpreg2), (imm), (imm2), (Rt), (imm3)) |
Signature: (cpreg, imm, imm2, cpreg2, cpreg3, imm3) | |
#define | INSTR_CREATE_cdp(dc, cpreg, imm, imm2, cpreg2, cpreg3, imm3) |
Signature: (cpreg, mem, imm) | |
#define | INSTR_CREATE_ldc(dc, cpreg, mem, imm) instr_create_1dst_2src((dc), OP_ldc, (cpreg), (mem), (imm)) |
#define | INSTR_CREATE_ldcl(dc, cpreg, mem, imm) instr_create_1dst_2src((dc), OP_ldcl, (cpreg), (mem), (imm)) |
Signature: (mem, imm, cpreg, imm2) | |
#define | INSTR_CREATE_stc(dc, mem, imm, cpreg, imm2) instr_create_1dst_3src((dc), OP_stc, (mem), (imm), (cpreg), (imm2)) |
#define | INSTR_CREATE_stc2(dc, mem, imm, cpreg, imm2) instr_create_1dst_3src((dc), OP_stc2, (mem), (imm), (cpreg), (imm2)) |
#define | INSTR_CREATE_stc2_wbimm(dc, mem, imm, cpreg, imm2) |
#define | INSTR_CREATE_stc2l(dc, mem, imm, cpreg, imm2) instr_create_1dst_3src((dc), OP_stc2l, (mem), (imm), (cpreg), (imm2)) |
#define | INSTR_CREATE_stc2l_wbimm(dc, mem, imm, cpreg, imm2) |
#define | INSTR_CREATE_stc_wbimm(dc, mem, imm, cpreg, imm2) |
#define | INSTR_CREATE_stcl(dc, mem, imm, cpreg, imm2) instr_create_1dst_3src((dc), OP_stcl, (mem), (imm), (cpreg), (imm2)) |
#define | INSTR_CREATE_stcl_wbimm(dc, mem, imm, cpreg, imm2) |
Signature: (cpreg, mem, imm, imm2) | |
#define | INSTR_CREATE_ldc2_option(dc, cpreg, mem, imm, imm2) instr_create_1dst_3src((dc), OP_ldc2, (cpreg), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_ldc2_wbimm(dc, cpreg, mem, imm, imm2) |
#define | INSTR_CREATE_ldc2l_option(dc, cpreg, mem, imm, imm2) instr_create_1dst_3src((dc), OP_ldc2l, (cpreg), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_ldc2l_wbimm(dc, cpreg, mem, imm, imm2) |
#define | INSTR_CREATE_ldc_option(dc, cpreg, mem, imm, imm2) instr_create_1dst_3src((dc), OP_ldc, (cpreg), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_ldc_wbimm(dc, cpreg, mem, imm, imm2) |
#define | INSTR_CREATE_ldcl_option(dc, cpreg, mem, imm, imm2) instr_create_1dst_3src((dc), OP_ldcl, (cpreg), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_ldcl_wbimm(dc, cpreg, mem, imm, imm2) |
Signature: (Rd, Vn) | |
#define | INSTR_CREATE_vmov_s2g(dc, Rd, Vn) instr_create_1dst_1src((dc), OP_vmov, (Rd), (Vn)) |
Signature: (Vd, Vm) | |
#define | INSTR_CREATE_aesd_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_aesd_8, (Vd), (Vm)) |
#define | INSTR_CREATE_aese_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_aese_8, (Vd), (Vm)) |
#define | INSTR_CREATE_aesimc_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_aesimc_8, (Vd), (Vm)) |
#define | INSTR_CREATE_aesmc_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_aesmc_8, (Vd), (Vm)) |
#define | INSTR_CREATE_sha1h_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_sha1h_32, (Vd), (Vm)) |
#define | INSTR_CREATE_sha1su1_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_sha1su1_32, (Vd), (Vm)) |
#define | INSTR_CREATE_sha256su0_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_sha256su0_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vabs_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vabs_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vabs_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vabs_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vabs_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vabs_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vabs_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vabs_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vabs_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vabs_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vcls_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcls_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vcls_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcls_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcls_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcls_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vclz_i16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vclz_i16, (Vd), (Vm)) |
#define | INSTR_CREATE_vclz_i32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vclz_i32, (Vd), (Vm)) |
#define | INSTR_CREATE_vclz_i8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vclz_i8, (Vd), (Vm)) |
#define | INSTR_CREATE_vcnt_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcnt_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f16_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f16_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f32_f16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f32_f16, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f32_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f32_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f32_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f32_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f64_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f64_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f64_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f64_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_f64_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_f64_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvt_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvt_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvta_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvta_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvta_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvta_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvta_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvta_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvta_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvta_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtb_f16_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtb_f16_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtb_f16_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtb_f16_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtb_f32_f16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtb_f32_f16, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtb_f64_f16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtb_f64_f16, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtm_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtm_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtm_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtm_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtm_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtm_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtm_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtm_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtn_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtn_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtn_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtn_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtn_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtn_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtn_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtn_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtp_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtp_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtp_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtp_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtp_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtp_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtp_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtp_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtr_s32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtr_s32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtr_s32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtr_s32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtr_u32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtr_u32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtr_u32_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtr_u32_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtt_f16_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtt_f16_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtt_f16_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtt_f16_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtt_f32_f16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtt_f32_f16, (Vd), (Vm)) |
#define | INSTR_CREATE_vcvtt_f64_f16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vcvtt_f64_f16, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_u16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_u16, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovl_u8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovl_u8, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovn_i16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovn_i16, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovn_i32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovn_i32, (Vd), (Vm)) |
#define | INSTR_CREATE_vmovn_i64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmovn_i64, (Vd), (Vm)) |
#define | INSTR_CREATE_vmvn(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vmvn, (Vd), (Vm)) |
#define | INSTR_CREATE_vneg_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vneg_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vneg_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vneg_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vneg_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vneg_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vneg_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vneg_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vneg_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vneg_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_u16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_u16, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vpadal_u8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpadal_u8, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_u16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_u16, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vpaddl_u8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vpaddl_u8, (Vd), (Vm)) |
#define | INSTR_CREATE_vqabs_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqabs_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vqabs_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqabs_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vqabs_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqabs_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_s64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_s64, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_u16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_u16, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovn_u64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovn_u64, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovun_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovun_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovun_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovun_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vqmovun_s64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqmovun_s64, (Vd), (Vm)) |
#define | INSTR_CREATE_vqneg_s16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqneg_s16, (Vd), (Vm)) |
#define | INSTR_CREATE_vqneg_s32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqneg_s32, (Vd), (Vm)) |
#define | INSTR_CREATE_vqneg_s8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vqneg_s8, (Vd), (Vm)) |
#define | INSTR_CREATE_vrecpe_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrecpe_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrecpe_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrecpe_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev16_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev16_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev16_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev16_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev32_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev32_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev32_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev32_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev32_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev32_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev64_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev64_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev64_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev64_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrev64_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrev64_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vrinta_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrinta_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrinta_f64_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrinta_f64_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintm_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintm_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintm_f64_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintm_f64_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintn_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintn_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintn_f64_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintn_f64_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintp_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintp_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintp_f64_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintp_f64_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintr_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintr_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintr_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintr_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintx_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintx_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintx_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintx_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintx_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintx_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintz_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintz_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintz_f32_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintz_f32_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrintz_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrintz_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vrsqrte_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrsqrte_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vrsqrte_u32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vrsqrte_u32, (Vd), (Vm)) |
#define | INSTR_CREATE_vsqrt_f32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vsqrt_f32, (Vd), (Vm)) |
#define | INSTR_CREATE_vsqrt_f64(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vsqrt_f64, (Vd), (Vm)) |
#define | INSTR_CREATE_vswp(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vswp, (Vd), (Vm)) |
#define | INSTR_CREATE_vtrn_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vtrn_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vtrn_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vtrn_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vtrn_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vtrn_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vuzp_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vuzp_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vuzp_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vuzp_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vuzp_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vuzp_8, (Vd), (Vm)) |
#define | INSTR_CREATE_vzip_16(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vzip_16, (Vd), (Vm)) |
#define | INSTR_CREATE_vzip_32(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vzip_32, (Vd), (Vm)) |
#define | INSTR_CREATE_vzip_8(dc, Vd, Vm) instr_create_1dst_1src((dc), OP_vzip_8, (Vd), (Vm)) |
Signature: (Vd, Rt) | |
#define | INSTR_CREATE_vdup_16(dc, Vd, Rt) instr_create_1dst_1src((dc), OP_vdup_16, (Vd), (Rt)) |
#define | INSTR_CREATE_vdup_32(dc, Vd, Rt) instr_create_1dst_1src((dc), OP_vdup_32, (Vd), (Rt)) |
#define | INSTR_CREATE_vdup_8(dc, Vd, Rt) instr_create_1dst_1src((dc), OP_vdup_8, (Vd), (Rt)) |
#define | INSTR_CREATE_vmov_g2s(dc, Vd, Rt) instr_create_1dst_1src((dc), OP_vmov, (Vd), (Rt)) |
Signature: (Ra, Rd, Vm) | |
#define | INSTR_CREATE_vmov_s2gg(dc, Ra, Rd, Vm) instr_create_2dst_1src((dc), OP_vmov, (Ra), (Rd), (Vm)) |
Signature: (Vd, Vn, Vm) | |
#define | INSTR_CREATE_sha1c_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha1c_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha1m_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha1m_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha1p_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha1p_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha1su0_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha1su0_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha256h2_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha256h2_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha256h_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha256h_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_sha256su1_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_sha256su1_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaba_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaba_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabal_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabal_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabd_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabd_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vabdl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vabdl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vacge_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vacge_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vacgt_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vacgt_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vadd_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vadd_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddhn_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddhn_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddhn_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddhn_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddhn_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddhn_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vaddw_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vaddw_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vand(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vand, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vbic(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vbic, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vbif(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vbif, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vbit(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vbit, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vbsl(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vbsl, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcge_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcge_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcge_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcge_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcge_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcge_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcgt_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcgt_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcgt_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcgt_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vcgt_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vcgt_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vdiv_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vdiv_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vdiv_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vdiv_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_veor(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_veor, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfma_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfma_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfma_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfma_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfms_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfms_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfms_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfms_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfnma_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfnma_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfnma_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfnma_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfnms_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfnms_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vfnms_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vfnms_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhadd_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhadd_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vhsub_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vhsub_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmax_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmax_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmaxnm_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmaxnm_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmaxnm_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmaxnm_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmin_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmin_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vminnm_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vminnm_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vminnm_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vminnm_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmla_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmla_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmla_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmla_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmla_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmla_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmla_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmla_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmla_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmla_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlal_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlal_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmls_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmls_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmls_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmls_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmls_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmls_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmls_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmls_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmls_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmls_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmlsl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmlsl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_p32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_p32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmul_p8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmul_p8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_p32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_p32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_p8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_p8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vmull_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vmull_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmla_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmla_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmla_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmla_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmls_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmls_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmls_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmls_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmul_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmul_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vnmul_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vnmul_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vorn(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vorn, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vorr(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vorr, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpadd_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpadd_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpadd_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpadd_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpadd_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpadd_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpadd_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpadd_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmax_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmax_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vpmin_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vpmin_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_s64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_s64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_u64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_u64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqadd_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqadd_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmlal_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmlal_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmlal_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmlal_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmlsl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmlsl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmlsl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmlsl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmulh_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmulh_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmulh_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmulh_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmull_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmull_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqdmull_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqdmull_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrdmulh_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrdmulh_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrdmulh_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrdmulh_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_s64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_s64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_u64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_u64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqrshl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqrshl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_s64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_s64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_u64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_u64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vqsub_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vqsub_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vraddhn_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vraddhn_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vraddhn_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vraddhn_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vraddhn_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vraddhn_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrecps_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrecps_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrhadd_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrhadd_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_s64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_s64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_u64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_u64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrshl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrshl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrsqrts_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrsqrts_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrsubhn_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrsubhn_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrsubhn_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrsubhn_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vrsubhn_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vrsubhn_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_s64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_s64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_u64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_u64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vshl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vshl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_f32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_f32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_f64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_f64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsub_i8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsub_i8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubhn_i16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubhn_i16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubhn_i32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubhn_i32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubhn_i64(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubhn_i64, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubl_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubl_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_s16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_s16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_s32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_s32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_s8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_s8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_u16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_u16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_u32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_u32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vsubw_u8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vsubw_u8, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vtst_16(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vtst_16, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vtst_32(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vtst_32, (Vd), (Vn), (Vm)) |
#define | INSTR_CREATE_vtst_8(dc, Vd, Vn, Vm) instr_create_1dst_2src((dc), OP_vtst_8, (Vd), (Vn), (Vm)) |
Signature: (Vd, Rt, Rt2) | |
#define | INSTR_CREATE_vmov_gg2s(dc, Vd, Rt, Rt2) instr_create_1dst_2src((dc), OP_vmov, (Vd), (Rt), (Rt2)) |
Signature: (Rd, Rd2, Vt, Vt2) | |
#define | INSTR_CREATE_vmov_ss2gg(dc, Rd, Rd2, Vt, Vt2) instr_create_2dst_2src((dc), OP_vmov, (Rd), (Rd2), (Vt), (Vt2)) |
Signature: (Vd, Vd2, Rt, Rt2) | |
#define | INSTR_CREATE_vmov_gg2ss(dc, Vd, Vd2, Rt, Rt2) instr_create_2dst_2src((dc), OP_vmov, (Vd), (Vd2), (Rt), (Rt2)) |
Signature: (Vd, imm) | |
#define | INSTR_CREATE_vbic_i16(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vbic_i16, (Vd), (imm)) |
#define | INSTR_CREATE_vbic_i32(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vbic_i32, (Vd), (imm)) |
#define | INSTR_CREATE_vmov_i16(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmov_i16, (Vd), (imm)) |
#define | INSTR_CREATE_vmov_i32(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmov_i32, (Vd), (imm)) |
#define | INSTR_CREATE_vmov_i64(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmov_i64, (Vd), (imm)) |
#define | INSTR_CREATE_vmov_i8(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmov_i8, (Vd), (imm)) |
#define | INSTR_CREATE_vmvn_i16(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmvn_i16, (Vd), (imm)) |
#define | INSTR_CREATE_vmvn_i32(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vmvn_i32, (Vd), (imm)) |
#define | INSTR_CREATE_vorr_i16(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vorr_i16, (Vd), (imm)) |
#define | INSTR_CREATE_vorr_i32(dc, Vd, imm) instr_create_1dst_1src((dc), OP_vorr_i32, (Vd), (imm)) |
Signature: (Vd, Vm_or_imm) | |
#define | INSTR_CREATE_vmov_f32(dc, Vd, Vm_or_imm) instr_create_1dst_1src((dc), OP_vmov_f32, (Vd), (Vm_or_imm)) |
#define | INSTR_CREATE_vmov_f64(dc, Vd, Vm_or_imm) instr_create_1dst_1src((dc), OP_vmov_f64, (Vd), (Vm_or_imm)) |
Signature: (Vt, Vm_or_imm) | |
#define | INSTR_CREATE_vcmp_f32(dc, Vt, Vm_or_imm) |
#define | INSTR_CREATE_vcmp_f64(dc, Vt, Vm_or_imm) |
#define | INSTR_CREATE_vcmpe_f32(dc, Vt, Vm_or_imm) |
#define | INSTR_CREATE_vcmpe_f64(dc, Vt, Vm_or_imm) |
Signature: (Rd, Vn, imm) | |
#define | INSTR_CREATE_vmov_32_s2g(dc, Rd, Vn, imm) instr_create_1dst_2src((dc), OP_vmov_32, (Rd), (Vn), (imm)) |
#define | INSTR_CREATE_vmov_s16(dc, Rd, Vn, imm) instr_create_1dst_2src((dc), OP_vmov_s16, (Rd), (Vn), (imm)) |
#define | INSTR_CREATE_vmov_s8(dc, Rd, Vn, imm) instr_create_1dst_2src((dc), OP_vmov_s8, (Rd), (Vn), (imm)) |
#define | INSTR_CREATE_vmov_u16(dc, Rd, Vn, imm) instr_create_1dst_2src((dc), OP_vmov_u16, (Rd), (Vn), (imm)) |
#define | INSTR_CREATE_vmov_u8(dc, Rd, Vn, imm) instr_create_1dst_2src((dc), OP_vmov_u8, (Rd), (Vn), (imm)) |
Signature: (Vd, Vm, imm) | |
#define | INSTR_CREATE_vcle_f32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcle_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcle_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcle_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcle_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcle_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcle_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcle_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vclt_f32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vclt_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vclt_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vclt_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vclt_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vclt_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vclt_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vclt_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f32_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f32_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f32_s32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f32_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f32_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f32_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f32_u32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f32_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f64_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f64_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f64_s32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f64_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f64_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f64_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_f64_u32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_f64_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_s16_f32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_s16_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_s16_f64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_s16_f64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_s32_f32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_s32_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_s32_f64_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_s32_f64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_u16_f32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_u16_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_u16_f64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_u16_f64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_u32_f32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_u32_f32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vcvt_u32_f64_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vcvt_u32_f64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vdup_16_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vdup_16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vdup_32_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vdup_32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vdup_8_imm(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vdup_8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrn_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrn_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrun_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrun_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrun_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrun_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqrshrun_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqrshrun_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshlu_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshlu_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshlu_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshlu_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshlu_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshlu_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshlu_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshlu_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrn_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrn_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrun_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrun_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrun_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrun_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vqshrun_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vqshrun_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshr_u8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshr_u8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshrn_i16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshrn_i16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshrn_i32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshrn_i32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrshrn_i64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrshrn_i64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vrsra_u8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vrsra_u8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshl_i16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshl_i16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshl_i32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshl_i32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshl_i64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshl_i64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshl_i8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshl_i8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_i16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_i16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_i32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_i32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_i8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_i8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshll_u8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshll_u8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshr_u8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshr_u8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshrn_i16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshrn_i16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshrn_i32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshrn_i32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vshrn_i64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vshrn_i64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsli_16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsli_16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsli_32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsli_32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsli_64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsli_64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsli_8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsli_8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_s16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_s16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_s32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_s32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_s64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_s64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_s8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_s8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_u16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_u16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_u32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_u32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_u64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_u64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsra_u8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsra_u8, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsri_16(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsri_16, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsri_32(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsri_32, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsri_64(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsri_64, (Vd), (Vm), (imm)) |
#define | INSTR_CREATE_vsri_8(dc, Vd, Vm, imm) instr_create_1dst_2src((dc), OP_vsri_8, (Vd), (Vm), (imm)) |
Signature: (Vd, Rt, imm) | |
#define | INSTR_CREATE_vmov_16(dc, Vd, Rt, imm) instr_create_1dst_2src((dc), OP_vmov_16, (Vd), (Rt), (imm)) |
#define | INSTR_CREATE_vmov_32_g2s(dc, Vd, Rt, imm) instr_create_1dst_2src((dc), OP_vmov_32, (Vd), (Rt), (imm)) |
#define | INSTR_CREATE_vmov_8(dc, Vd, Rt, imm) instr_create_1dst_2src((dc), OP_vmov_8, (Vd), (Rt), (imm)) |
Signature: (Vd, Vn, Vm_or_imm) | |
#define | INSTR_CREATE_vceq_f32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vceq_f32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vceq_i16(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vceq_i16, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vceq_i32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vceq_i32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vceq_i8(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vceq_i8, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcge_f32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcge_f32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcge_s16(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcge_s16, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcge_s32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcge_s32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcge_s8(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcge_s8, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcgt_f32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcgt_f32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcgt_s16(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcgt_s16, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcgt_s32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcgt_s32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vcgt_s8(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vcgt_s8, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_s16(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_s16, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_s32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_s32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_s64(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_s64, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_s8(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_s8, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_u16(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_u16, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_u32(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_u32, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_u64(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_u64, (Vd), (Vn), (Vm_or_imm)) |
#define | INSTR_CREATE_vqshl_u8(dc, Vd, Vn, Vm_or_imm) instr_create_1dst_2src((dc), OP_vqshl_u8, (Vd), (Vn), (Vm_or_imm)) |
Signature: (Vd, Vn, Vm, imm) | |
#define | INSTR_CREATE_vext(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vext, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmla_f32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmla_f32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmla_i16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmla_i16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmla_i32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmla_i32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlal_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlal_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlal_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlal_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlal_u16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlal_u16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlal_u32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlal_u32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmls_f32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmls_f32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmls_i16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmls_i16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmls_i32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmls_i32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlsl_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlsl_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlsl_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlsl_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlsl_u16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlsl_u16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmlsl_u32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmlsl_u32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmul_f32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmul_f32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmul_i16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmul_i16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmul_i32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmul_i32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmull_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmull_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmull_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmull_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmull_u16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmull_u16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vmull_u32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vmull_u32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmlal_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmlal_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmlal_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmlal_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmlsl_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmlsl_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmlsl_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmlsl_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmulh_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmulh_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmulh_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmulh_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmull_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmull_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqdmull_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqdmull_s32, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqrdmulh_s16_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqrdmulh_s16, (Vd), (Vn), (Vm), (imm)) |
#define | INSTR_CREATE_vqrdmulh_s32_imm(dc, Vd, Vn, Vm, imm) instr_create_1dst_3src((dc), OP_vqrdmulh_s32, (Vd), (Vn), (Vm), (imm)) |
Signature: (Vd, imm, Vn, Vm) | |
#define | INSTR_CREATE_vsel_eq_f32(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_eq_f32, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_eq_f64(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_eq_f64, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_ge_f32(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_ge_f32, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_ge_f64(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_ge_f64, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_gt_f32(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_gt_f32, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_gt_f64(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_gt_f64, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_vs_f32(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_vs_f32, (Vd), (imm), (Vn), (Vm)) |
#define | INSTR_CREATE_vsel_vs_f64(dc, Vd, imm, Vn, Vm) instr_create_1dst_3src((dc), OP_vsel_vs_f64, (Vd), (imm), (Vn), (Vm)) |
Signature: (Vd, mem) | |
#define | INSTR_CREATE_vldr(dc, Vd, mem) instr_create_1dst_1src((dc), OP_vldr, (Vd), (mem)) |
Signature: (mem, Vt) | |
#define | INSTR_CREATE_vstr(dc, mem, Vt) instr_create_1dst_1src((dc), OP_vstr, (mem), (Vt)) |
Signature: (Vd, mem, imm) | |
#define | INSTR_CREATE_vld1_lane_8(dc, Vd, mem, imm) instr_create_1dst_2src((dc), OP_vld1_lane_8, (Vd), (mem), (imm)) |
#define | INSTR_CREATE_vld1_lane_8_wbimm(dc, Vd, mem, imm) |
Signature: (mem, Vt, imm) | |
#define | INSTR_CREATE_vst1_lane_8(dc, mem, Vt, imm) instr_create_1dst_2src((dc), OP_vst1_lane_8, (mem), (Vt), (imm)) |
#define | INSTR_CREATE_vst1_lane_8_wbimm(dc, mem, Vt, imm) |
Signature: (Vd, mem, imm, Rm) | |
#define | INSTR_CREATE_vld1_lane_8_wbreg(dc, Vd, mem, imm, Rm) |
Signature: (Vd, mem, imm, imm2) | |
#define | INSTR_CREATE_vld1_lane_16(dc, Vd, mem, imm, imm2) instr_create_1dst_3src((dc), OP_vld1_lane_16, (Vd), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_vld1_lane_16_wbimm(dc, Vd, mem, imm, imm2) |
#define | INSTR_CREATE_vld1_lane_32(dc, Vd, mem, imm, imm2) instr_create_1dst_3src((dc), OP_vld1_lane_32, (Vd), (mem), (imm), (imm2)) |
#define | INSTR_CREATE_vld1_lane_32_wbimm(dc, Vd, mem, imm, imm2) |
Signature: (mem, Vt, imm, Rm) | |
#define | INSTR_CREATE_vst1_lane_8_wbreg(dc, mem, Vt, imm, Rm) |
Signature: (mem, Vt, imm, imm2) | |
#define | INSTR_CREATE_vst1_lane_16(dc, mem, Vt, imm, imm2) instr_create_1dst_3src((dc), OP_vst1_lane_16, (mem), (Vt), (imm), (imm2)) |
#define | INSTR_CREATE_vst1_lane_16_wbimm(dc, mem, Vt, imm, imm2) |
#define | INSTR_CREATE_vst1_lane_32(dc, mem, Vt, imm, imm2) instr_create_1dst_3src((dc), OP_vst1_lane_32, (mem), (Vt), (imm), (imm2)) |
#define | INSTR_CREATE_vst1_lane_32_wbimm(dc, mem, Vt, imm, imm2) |
Signature: (Vd, mem, imm, imm2, Rm) | |
#define | INSTR_CREATE_vld1_lane_16_wbreg(dc, Vd, mem, imm, imm2, Rm) |
#define | INSTR_CREATE_vld1_lane_32_wbreg(dc, Vd, mem, imm, imm2, Rm) |
Signature: (mem, Vt, imm, imm2, Rm) | |
#define | INSTR_CREATE_vst1_lane_16_wbreg(dc, mem, Vt, imm, imm2, Rm) |
#define | INSTR_CREATE_vst1_lane_32_wbreg(dc, mem, Vt, imm, imm2, Rm) |
Signature: (Vd, Vm, list_len, ...) | |
#define | INSTR_CREATE_vtbl_8(dc, Vd, Vm, list_len, ...) |
#define | INSTR_CREATE_vtbx_8(dc, Vd, Vm, list_len, ...) |
Enumerations | |
enum | { DR_DMB_OSHLD = 1, DR_DMB_OSHST = 2, DR_DMB_OSH = 3, DR_DMB_NSHLD = 5, DR_DMB_NSHST = 6, DR_DMB_NSH = 7, DR_DMB_ISHLD = 9, DR_DMB_ISHST = 10, DR_DMB_ISH = 11, DR_DMB_LD = 13, DR_DMB_ST = 14, DR_DMB_SY = 15 } |
Detailed Description
ARM-specific instruction creation convenience macros.
Macro Definition Documentation
◆ dr_ir_macros_arm_hlt
#define dr_ir_macros_arm_hlt | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_hlt, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ dr_ir_macros_arm_hvc
#define dr_ir_macros_arm_hvc | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_hvc, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adc
#define INSTR_CREATE_adc | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adc_shimm
#define INSTR_CREATE_adc_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adc_shreg
#define INSTR_CREATE_adc_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_adcs
#define INSTR_CREATE_adcs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adcs_shimm
#define INSTR_CREATE_adcs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adcs_shreg
#define INSTR_CREATE_adcs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_add
#define INSTR_CREATE_add | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_add_shimm
#define INSTR_CREATE_add_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_add_shreg
#define INSTR_CREATE_add_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_adds
#define INSTR_CREATE_adds | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adds_shimm
#define INSTR_CREATE_adds_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_adds_shreg
#define INSTR_CREATE_adds_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_addw
#define INSTR_CREATE_addw | ( | dc, | |
Rd, | |||
Rn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_addw, (Rd), (Rn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_aesd_8
#define INSTR_CREATE_aesd_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_aesd_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_aese_8
#define INSTR_CREATE_aese_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_aese_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_aesimc_8
#define INSTR_CREATE_aesimc_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_aesimc_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_aesmc_8
#define INSTR_CREATE_aesmc_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_aesmc_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_and
#define INSTR_CREATE_and | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_and_shimm
#define INSTR_CREATE_and_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_and_shreg
#define INSTR_CREATE_and_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_ands
#define INSTR_CREATE_ands | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ands_shimm
#define INSTR_CREATE_ands_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ands_shreg
#define INSTR_CREATE_ands_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_asr
#define INSTR_CREATE_asr | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_asr, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_asrs
#define INSTR_CREATE_asrs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_asrs, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_b
#define INSTR_CREATE_b | ( | dc, | |
pc | |||
) | instr_create_0dst_1src((dc), OP_b, (pc)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_b_short [1/2]
#define INSTR_CREATE_b_short | ( | dc, | |
pc | |||
) | instr_create_0dst_1src((dc), OP_b_short, (pc)) |
◆ INSTR_CREATE_b_short [2/2]
#define INSTR_CREATE_b_short | ( | dc, | |
pc | |||
) | instr_create_0dst_1src((dc), OP_b_short, (pc)) |
◆ INSTR_CREATE_bfc
#define INSTR_CREATE_bfc | ( | dc, | |
Rd, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_bfc, (Rd), (imm), (imm2), (Rd)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bfi
#define INSTR_CREATE_bfi | ( | dc, | |
Rd, | |||
Rm, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_4src((dc), OP_bfi, (Rd), (Rm), (imm), (imm2), (Rd)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bic
#define INSTR_CREATE_bic | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bic_shimm
#define INSTR_CREATE_bic_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bic_shreg
#define INSTR_CREATE_bic_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_bics
#define INSTR_CREATE_bics | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bics_shimm
#define INSTR_CREATE_bics_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bics_shreg
#define INSTR_CREATE_bics_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_bkpt
#define INSTR_CREATE_bkpt | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_bkpt, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bl
#define INSTR_CREATE_bl | ( | dc, | |
pc | |||
) | instr_create_1dst_1src((dc), OP_bl, opnd_create_reg(DR_REG_LR), (pc)) |
◆ INSTR_CREATE_blx
#define INSTR_CREATE_blx | ( | dc, | |
pc | |||
) | instr_create_1dst_1src((dc), OP_blx, opnd_create_reg(DR_REG_LR), (pc)) |
◆ INSTR_CREATE_blx_ind
#define INSTR_CREATE_blx_ind | ( | dc, | |
Rm | |||
) | instr_create_1dst_1src((dc), OP_blx_ind, opnd_create_reg(DR_REG_LR), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bx
#define INSTR_CREATE_bx | ( | dc, | |
Rm | |||
) | instr_create_0dst_1src((dc), OP_bx, (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_bxj
#define INSTR_CREATE_bxj | ( | dc, | |
Rm | |||
) | instr_create_0dst_1src((dc), OP_bxj, (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cbnz
#define INSTR_CREATE_cbnz | ( | dc, | |
pc, | |||
Rn | |||
) | instr_create_0dst_2src((dc), OP_cbnz, (pc), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cbz
#define INSTR_CREATE_cbz | ( | dc, | |
pc, | |||
Rn | |||
) | instr_create_0dst_2src((dc), OP_cbz, (pc), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cdp
#define INSTR_CREATE_cdp | ( | dc, | |
cpreg, | |||
imm, | |||
imm2, | |||
cpreg2, | |||
cpreg3, | |||
imm3 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. cpreg The coprocessor register opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. cpreg2 The second coprocessor register opnd_t operand. cpreg3 The third coprocessor register opnd_t operand. imm3 The third integer constant opnd_t operand.
◆ INSTR_CREATE_cdp2
#define INSTR_CREATE_cdp2 | ( | dc, | |
cpreg, | |||
imm, | |||
imm2, | |||
cpreg2, | |||
cpreg3 | |||
) | instr_create_1dst_4src((dc), OP_cdp2, (cpreg), (imm), (imm2), (cpreg2), (cpreg3)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. cpreg The coprocessor register opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. cpreg2 The second coprocessor register opnd_t operand. cpreg3 The third coprocessor register opnd_t operand.
◆ INSTR_CREATE_clrex
#define INSTR_CREATE_clrex | ( | dc | ) | instr_create_0dst_0src((dc), OP_clrex) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_clz
#define INSTR_CREATE_clz | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_clz, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmn
#define INSTR_CREATE_cmn | ( | dc, | |
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmn_shimm
#define INSTR_CREATE_cmn_shimm | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmn_shreg
#define INSTR_CREATE_cmn_shreg | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmp
#define INSTR_CREATE_cmp | ( | dc, | |
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmp_shimm
#define INSTR_CREATE_cmp_shimm | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cmp_shreg
#define INSTR_CREATE_cmp_shreg | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cps
#define INSTR_CREATE_cps | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_cps, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cpsid
#define INSTR_CREATE_cpsid | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_cpsid, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cpsid_noflags
#define INSTR_CREATE_cpsid_noflags | ( | dc, | |
imm, | |||
imm2 | |||
) | instr_create_0dst_2src((dc), OP_cpsid, (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cpsie
#define INSTR_CREATE_cpsie | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_cpsie, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_cpsie_noflags
#define INSTR_CREATE_cpsie_noflags | ( | dc, | |
imm, | |||
imm2 | |||
) | instr_create_0dst_2src((dc), OP_cpsie, (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32b
#define INSTR_CREATE_crc32b | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32b, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32cb
#define INSTR_CREATE_crc32cb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32cb, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32ch
#define INSTR_CREATE_crc32ch | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32ch, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32cw
#define INSTR_CREATE_crc32cw | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32cw, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32h
#define INSTR_CREATE_crc32h | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32h, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_crc32w
#define INSTR_CREATE_crc32w | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_crc32w, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_dbg
#define INSTR_CREATE_dbg | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_dbg, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_dcps1
#define INSTR_CREATE_dcps1 | ( | dc | ) | instr_create_0dst_0src((dc), OP_dcps1) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_dcps2
#define INSTR_CREATE_dcps2 | ( | dc | ) | instr_create_0dst_0src((dc), OP_dcps2) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_dcps3
#define INSTR_CREATE_dcps3 | ( | dc | ) | instr_create_0dst_0src((dc), OP_dcps3) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_dmb
#define INSTR_CREATE_dmb | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_dmb, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_dsb
#define INSTR_CREATE_dsb | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_dsb, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_enterx
#define INSTR_CREATE_enterx | ( | dc | ) | instr_create_0dst_0src((dc), OP_enterx) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_eor
#define INSTR_CREATE_eor | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_eor_shimm
#define INSTR_CREATE_eor_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_eor_shreg
#define INSTR_CREATE_eor_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_eors
#define INSTR_CREATE_eors | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_eors_shimm
#define INSTR_CREATE_eors_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_eors_shreg
#define INSTR_CREATE_eors_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_eret
#define INSTR_CREATE_eret | ( | dc | ) | instr_create_0dst_1src((dc), OP_eret, opnd_create_reg(DR_REG_LR)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_eret_imm
#define INSTR_CREATE_eret_imm | ( | dc, | |
imm | |||
) | instr_create_0dst_2src((dc), OP_eret, opnd_create_reg(DR_REG_LR), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_isb
#define INSTR_CREATE_isb | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_isb, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_it
#define INSTR_CREATE_it | ( | dc, | |
imm, | |||
imm2 | |||
) | instr_create_0dst_2src((dc), OP_it, (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_lda
#define INSTR_CREATE_lda | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_lda, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldab
#define INSTR_CREATE_ldab | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldab, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldaex
#define INSTR_CREATE_ldaex | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldaex, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldaexb
#define INSTR_CREATE_ldaexb | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldaexb, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldaexd
#define INSTR_CREATE_ldaexd | ( | dc, | |
Rd, | |||
Rd2, | |||
mem | |||
) | instr_create_2dst_1src((dc), OP_ldaexd, (Rd), (Rd2), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldaexh
#define INSTR_CREATE_ldaexh | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldaexh, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldah
#define INSTR_CREATE_ldah | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldah, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc
#define INSTR_CREATE_ldc | ( | dc, | |
cpreg, | |||
mem, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_ldc, (cpreg), (mem), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc2_option
#define INSTR_CREATE_ldc2_option | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_ldc2, (cpreg), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc2_wbimm
#define INSTR_CREATE_ldc2_wbimm | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc2l_option
#define INSTR_CREATE_ldc2l_option | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_ldc2l, (cpreg), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc2l_wbimm
#define INSTR_CREATE_ldc2l_wbimm | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc_option
#define INSTR_CREATE_ldc_option | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_ldc, (cpreg), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldc_wbimm
#define INSTR_CREATE_ldc_wbimm | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldcl
#define INSTR_CREATE_ldcl | ( | dc, | |
cpreg, | |||
mem, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_ldcl, (cpreg), (mem), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldcl_option
#define INSTR_CREATE_ldcl_option | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_ldcl, (cpreg), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldcl_wbimm
#define INSTR_CREATE_ldcl_wbimm | ( | dc, | |
cpreg, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldm
#define INSTR_CREATE_ldm | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_vardst((dc), OP_ldm, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldm_priv
#define INSTR_CREATE_ldm_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldm_priv_wb
#define INSTR_CREATE_ldm_priv_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldm_wb
#define INSTR_CREATE_ldm_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmda
#define INSTR_CREATE_ldmda | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_vardst((dc), OP_ldmda, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmda_priv
#define INSTR_CREATE_ldmda_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmda_priv_wb
#define INSTR_CREATE_ldmda_priv_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmda_wb
#define INSTR_CREATE_ldmda_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmdb
#define INSTR_CREATE_ldmdb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_vardst((dc), OP_ldmdb, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmdb_priv
#define INSTR_CREATE_ldmdb_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmdb_priv_wb
#define INSTR_CREATE_ldmdb_priv_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmdb_wb
#define INSTR_CREATE_ldmdb_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmib
#define INSTR_CREATE_ldmib | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_vardst((dc), OP_ldmib, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmib_priv
#define INSTR_CREATE_ldmib_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldmib_wb
#define INSTR_CREATE_ldmib_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldr
#define INSTR_CREATE_ldr | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldr, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldr_wbimm
#define INSTR_CREATE_ldr_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldr_wbreg
#define INSTR_CREATE_ldr_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrb
#define INSTR_CREATE_ldrb | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrb, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrb_wbimm
#define INSTR_CREATE_ldrb_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrb_wbreg
#define INSTR_CREATE_ldrb_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrbt
#define INSTR_CREATE_ldrbt | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrbt, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrbt_wbimm
#define INSTR_CREATE_ldrbt_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrbt_wbreg
#define INSTR_CREATE_ldrbt_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrd
#define INSTR_CREATE_ldrd | ( | dc, | |
Rd, | |||
Rd2, | |||
mem | |||
) | instr_create_2dst_1src((dc), OP_ldrd, (Rd), (Rd2), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrd_wbimm
#define INSTR_CREATE_ldrd_wbimm | ( | dc, | |
Rd, | |||
Rd2, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrd_wbreg
#define INSTR_CREATE_ldrd_wbreg | ( | dc, | |
Rd, | |||
Rd2, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrex
#define INSTR_CREATE_ldrex | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrex, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrexb
#define INSTR_CREATE_ldrexb | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrexb, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrexd
#define INSTR_CREATE_ldrexd | ( | dc, | |
Rd, | |||
Rd2, | |||
mem | |||
) | instr_create_2dst_1src((dc), OP_ldrexd, (Rd), (Rd2), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrexh
#define INSTR_CREATE_ldrexh | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrexh, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrh
#define INSTR_CREATE_ldrh | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrh, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrh_wbimm
#define INSTR_CREATE_ldrh_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrh_wbreg
#define INSTR_CREATE_ldrh_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrht
#define INSTR_CREATE_ldrht | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrht, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrht_wbimm
#define INSTR_CREATE_ldrht_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrht_wbreg
#define INSTR_CREATE_ldrht_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsb
#define INSTR_CREATE_ldrsb | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrsb, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsb_wbimm
#define INSTR_CREATE_ldrsb_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsb_wbreg
#define INSTR_CREATE_ldrsb_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsbt
#define INSTR_CREATE_ldrsbt | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrsbt, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsbt_wbimm
#define INSTR_CREATE_ldrsbt_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsbt_wbreg
#define INSTR_CREATE_ldrsbt_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsh
#define INSTR_CREATE_ldrsh | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrsh, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsh_wbimm
#define INSTR_CREATE_ldrsh_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsh_wbreg
#define INSTR_CREATE_ldrsh_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsht
#define INSTR_CREATE_ldrsht | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrsht, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsht_wbimm
#define INSTR_CREATE_ldrsht_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrsht_wbreg
#define INSTR_CREATE_ldrsht_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrt
#define INSTR_CREATE_ldrt | ( | dc, | |
Rd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_ldrt, (Rd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrt_wbimm
#define INSTR_CREATE_ldrt_wbimm | ( | dc, | |
Rd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ldrt_wbreg
#define INSTR_CREATE_ldrt_wbreg | ( | dc, | |
Rd, | |||
mem, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_leavex
#define INSTR_CREATE_leavex | ( | dc | ) | instr_create_0dst_0src((dc), OP_leavex) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_lsl
#define INSTR_CREATE_lsl | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_lsl, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_lsls
#define INSTR_CREATE_lsls | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_lsls, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_lsr
#define INSTR_CREATE_lsr | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_lsr, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_lsrs
#define INSTR_CREATE_lsrs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_lsrs, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mcr
#define INSTR_CREATE_mcr | ( | dc, | |
cpreg, | |||
cpreg2, | |||
imm, | |||
imm2, | |||
Rt, | |||
imm3 | |||
) | instr_create_2dst_4src((dc), OP_mcr, (cpreg), (cpreg2), (imm), (imm2), (Rt), (imm3)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. cpreg The coprocessor register opnd_t operand. cpreg2 The second coprocessor register opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rt The source register opnd_t operand. imm3 The third integer constant opnd_t operand.
◆ INSTR_CREATE_mcr2
#define INSTR_CREATE_mcr2 | ( | dc, | |
cpreg, | |||
cpreg2, | |||
imm, | |||
imm2, | |||
Rt | |||
) | instr_create_2dst_3src((dc), OP_mcr2, (cpreg), (cpreg2), (imm), (imm2), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mcrr
#define INSTR_CREATE_mcrr | ( | dc, | |
cpreg, | |||
Rn, | |||
Rt, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_4src((dc), OP_mcrr, (cpreg), (Rn), (Rt), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mcrr2
#define INSTR_CREATE_mcrr2 | ( | dc, | |
cpreg, | |||
Rn, | |||
Rt, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_4src((dc), OP_mcrr2, (cpreg), (Rn), (Rt), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mla
#define INSTR_CREATE_mla | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_mla, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mlas
#define INSTR_CREATE_mlas | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_mlas, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mls
#define INSTR_CREATE_mls | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_mls, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mov
#define INSTR_CREATE_mov | ( | dc, | |
Rd, | |||
Rm_or_imm | |||
) | instr_create_1dst_1src((dc), OP_mov, (Rd), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_movs
#define INSTR_CREATE_movs | ( | dc, | |
Rd, | |||
Rm_or_imm | |||
) | instr_create_1dst_1src((dc), OP_movs, (Rd), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_movt
#define INSTR_CREATE_movt | ( | dc, | |
Rd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_movt, (Rd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_movw
#define INSTR_CREATE_movw | ( | dc, | |
Rd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_movw, (Rd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mrc
#define INSTR_CREATE_mrc | ( | dc, | |
Rd, | |||
imm, | |||
imm2, | |||
cpreg, | |||
cpreg2, | |||
imm3 | |||
) | instr_create_1dst_5src((dc), OP_mrc, (Rd), (imm), (imm2), (cpreg), (cpreg2), (imm3)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. cpreg The coprocessor register opnd_t operand. cpreg2 The second coprocessor register opnd_t operand. imm3 The third integer constant opnd_t operand.
◆ INSTR_CREATE_mrc2
#define INSTR_CREATE_mrc2 | ( | dc, | |
Rd, | |||
imm, | |||
imm2, | |||
cpreg, | |||
cpreg2, | |||
imm3 | |||
) | instr_create_1dst_5src((dc), OP_mrc2, (Rd), (imm), (imm2), (cpreg), (cpreg2), (imm3)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. cpreg The coprocessor register opnd_t operand. cpreg2 The second coprocessor register opnd_t operand. imm3 The third integer constant opnd_t operand.
◆ INSTR_CREATE_mrrc
#define INSTR_CREATE_mrrc | ( | dc, | |
Ra, | |||
Rd, | |||
imm, | |||
imm2, | |||
cpreg | |||
) | instr_create_2dst_3src((dc), OP_mrrc, (Ra), (Rd), (imm), (imm2), (cpreg)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mrrc2
#define INSTR_CREATE_mrrc2 | ( | dc, | |
Ra, | |||
Rd, | |||
imm, | |||
imm2, | |||
cpreg | |||
) | instr_create_2dst_3src((dc), OP_mrrc2, (Ra), (Rd), (imm), (imm2), (cpreg)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mrs
#define INSTR_CREATE_mrs | ( | dc, | |
Rd, | |||
statreg | |||
) | instr_create_1dst_1src((dc), OP_mrs, (Rd), (statreg)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mrs_priv
#define INSTR_CREATE_mrs_priv | ( | dc, | |
Rd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_mrs_priv, (Rd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mrs_priv_spsr
#define INSTR_CREATE_mrs_priv_spsr | ( | dc, | |
Rd, | |||
statreg, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_mrs_priv, (Rd), (statreg), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_msr
#define INSTR_CREATE_msr | ( | dc, | |
statreg, | |||
imm_msr, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_msr, (statreg), (imm_msr), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_msr_imm
#define INSTR_CREATE_msr_imm | ( | dc, | |
statreg, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_2src((dc), OP_msr, (statreg), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_msr_priv
#define INSTR_CREATE_msr_priv | ( | dc, | |
imm, | |||
Rm | |||
) | instr_create_0dst_2src((dc), OP_msr_priv, (imm), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_msr_priv_spsr
#define INSTR_CREATE_msr_priv_spsr | ( | dc, | |
statreg, | |||
imm, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_msr_priv, (statreg), (imm), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mul
#define INSTR_CREATE_mul | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_mul, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_muls
#define INSTR_CREATE_muls | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_muls, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvn
#define INSTR_CREATE_mvn | ( | dc, | |
Rd, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvn_shimm
#define INSTR_CREATE_mvn_shimm | ( | dc, | |
Rd, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvn_shreg
#define INSTR_CREATE_mvn_shreg | ( | dc, | |
Rd, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvns
#define INSTR_CREATE_mvns | ( | dc, | |
Rd, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvns_shimm
#define INSTR_CREATE_mvns_shimm | ( | dc, | |
Rd, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_mvns_shreg
#define INSTR_CREATE_mvns_shreg | ( | dc, | |
Rd, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_neg
#define INSTR_CREATE_neg | ( | dc, | |
Rd, | |||
Rn | |||
) | INSTR_CREATE_rsb((dc), (Rd), (Rn), OPND_CREATE_INT16(0)) |
◆ INSTR_CREATE_nop
#define INSTR_CREATE_nop | ( | dc | ) | instr_create_0dst_0src((dc), OP_nop) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_orn
#define INSTR_CREATE_orn | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orn_shimm
#define INSTR_CREATE_orn_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orns
#define INSTR_CREATE_orns | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orns_shimm
#define INSTR_CREATE_orns_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orr
#define INSTR_CREATE_orr | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orr_shimm
#define INSTR_CREATE_orr_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orr_shreg
#define INSTR_CREATE_orr_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_orrs
#define INSTR_CREATE_orrs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orrs_shimm
#define INSTR_CREATE_orrs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_orrs_shreg
#define INSTR_CREATE_orrs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_pkhbt_shimm
#define INSTR_CREATE_pkhbt_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_pkhtb_shimm
#define INSTR_CREATE_pkhtb_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_pld
#define INSTR_CREATE_pld | ( | dc, | |
mem | |||
) | instr_create_0dst_1src((dc), OP_pld, (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_pldw
#define INSTR_CREATE_pldw | ( | dc, | |
mem | |||
) | instr_create_0dst_1src((dc), OP_pldw, (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_pli
#define INSTR_CREATE_pli | ( | dc, | |
mem | |||
) | instr_create_0dst_1src((dc), OP_pli, (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_pop
#define INSTR_CREATE_pop | ( | dc, | |
Rd | |||
) |
This macro creates an instr_t for a pop instruction into a single register, automatically supplying any implicit operands.
◆ INSTR_CREATE_pop_list
#define INSTR_CREATE_pop_list | ( | dc, | |
list_len, | |||
... | |||
) | INSTR_CREATE_ldm_wb((dc), OPND_CREATE_MEMLIST(DR_REG_XSP), list_len, __VA_ARGS__) |
This macro creates an instr_t for a pop instruction into a list of registers, automatically supplying any implicit operands.
◆ INSTR_CREATE_push
#define INSTR_CREATE_push | ( | dc, | |
Rt | |||
) |
This macro creates an instr_t for a push instruction of a single register, automatically supplying any implicit operands.
◆ INSTR_CREATE_push_list
#define INSTR_CREATE_push_list | ( | dc, | |
list_len, | |||
... | |||
) | INSTR_CREATE_stmdb_wb((dc), OPND_CREATE_MEMLIST(DR_REG_XSP), list_len, __VA_ARGS__) |
This macro creates an instr_t for a push instruction of a list of registers, automatically supplying any implicit operands.
◆ INSTR_CREATE_qadd
#define INSTR_CREATE_qadd | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qadd, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qadd16
#define INSTR_CREATE_qadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qadd8
#define INSTR_CREATE_qadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qasx
#define INSTR_CREATE_qasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qdadd
#define INSTR_CREATE_qdadd | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qdadd, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qdsub
#define INSTR_CREATE_qdsub | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qdsub, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qsax
#define INSTR_CREATE_qsax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qsax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qsub
#define INSTR_CREATE_qsub | ( | dc, | |
Rd, | |||
Rm, | |||
Rn | |||
) | instr_create_1dst_2src((dc), OP_qsub, (Rd), (Rm), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qsub16
#define INSTR_CREATE_qsub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qsub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_qsub8
#define INSTR_CREATE_qsub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_qsub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rbit
#define INSTR_CREATE_rbit | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_rbit, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rev
#define INSTR_CREATE_rev | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_rev, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rev16
#define INSTR_CREATE_rev16 | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_rev16, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_revsh
#define INSTR_CREATE_revsh | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_revsh, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfe
#define INSTR_CREATE_rfe | ( | dc, | |
statreg, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_rfe, (statreg), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfe_wb
#define INSTR_CREATE_rfe_wb | ( | dc, | |
statreg, | |||
mem | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfeda
#define INSTR_CREATE_rfeda | ( | dc, | |
statreg, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_rfeda, (statreg), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfeda_wb
#define INSTR_CREATE_rfeda_wb | ( | dc, | |
statreg, | |||
mem | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfedb
#define INSTR_CREATE_rfedb | ( | dc, | |
statreg, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_rfedb, (statreg), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfedb_wb
#define INSTR_CREATE_rfedb_wb | ( | dc, | |
statreg, | |||
mem | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfeib
#define INSTR_CREATE_rfeib | ( | dc, | |
statreg, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_rfeib, (statreg), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rfeib_wb
#define INSTR_CREATE_rfeib_wb | ( | dc, | |
statreg, | |||
mem | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ror
#define INSTR_CREATE_ror | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_ror, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rors
#define INSTR_CREATE_rors | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_rors, (Rd), (Rn), (Rm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rrx
#define INSTR_CREATE_rrx | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_rrx, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rrxs
#define INSTR_CREATE_rrxs | ( | dc, | |
Rd, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_rrxs, (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsb
#define INSTR_CREATE_rsb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsb_shimm
#define INSTR_CREATE_rsb_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsb_shreg
#define INSTR_CREATE_rsb_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_rsbs
#define INSTR_CREATE_rsbs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsbs_shimm
#define INSTR_CREATE_rsbs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsbs_shreg
#define INSTR_CREATE_rsbs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_rsc
#define INSTR_CREATE_rsc | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsc_shimm
#define INSTR_CREATE_rsc_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rsc_shreg
#define INSTR_CREATE_rsc_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_rscs
#define INSTR_CREATE_rscs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rscs_shimm
#define INSTR_CREATE_rscs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_rscs_shreg
#define INSTR_CREATE_rscs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_sadd16
#define INSTR_CREATE_sadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_sadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sadd8
#define INSTR_CREATE_sadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_sadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sasx
#define INSTR_CREATE_sasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_sasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sbc
#define INSTR_CREATE_sbc | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sbc_shimm
#define INSTR_CREATE_sbc_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sbc_shreg
#define INSTR_CREATE_sbc_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_sbcs
#define INSTR_CREATE_sbcs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sbcs_shimm
#define INSTR_CREATE_sbcs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sbcs_shreg
#define INSTR_CREATE_sbcs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_sbfx
#define INSTR_CREATE_sbfx | ( | dc, | |
Rd, | |||
Rm, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_sbfx, (Rd), (Rm), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sdiv
#define INSTR_CREATE_sdiv | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_sdiv, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sel
#define INSTR_CREATE_sel | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_sel, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_setend
#define INSTR_CREATE_setend | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_setend, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sev
#define INSTR_CREATE_sev | ( | dc | ) | instr_create_0dst_0src((dc), OP_sev) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_sevl
#define INSTR_CREATE_sevl | ( | dc | ) | instr_create_0dst_0src((dc), OP_sevl) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_sha1c_32
#define INSTR_CREATE_sha1c_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha1c_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha1h_32
#define INSTR_CREATE_sha1h_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_sha1h_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha1m_32
#define INSTR_CREATE_sha1m_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha1m_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha1p_32
#define INSTR_CREATE_sha1p_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha1p_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha1su0_32
#define INSTR_CREATE_sha1su0_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha1su0_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha1su1_32
#define INSTR_CREATE_sha1su1_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_sha1su1_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha256h2_32
#define INSTR_CREATE_sha256h2_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha256h2_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha256h_32
#define INSTR_CREATE_sha256h_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha256h_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha256su0_32
#define INSTR_CREATE_sha256su0_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_sha256su0_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sha256su1_32
#define INSTR_CREATE_sha256su1_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_sha256su1_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shadd16
#define INSTR_CREATE_shadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shadd8
#define INSTR_CREATE_shadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shasx
#define INSTR_CREATE_shasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shsax
#define INSTR_CREATE_shsax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shsax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shsub16
#define INSTR_CREATE_shsub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shsub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_shsub8
#define INSTR_CREATE_shsub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_shsub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smc
#define INSTR_CREATE_smc | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_smc, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlabb
#define INSTR_CREATE_smlabb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlabb, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlabt
#define INSTR_CREATE_smlabt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlabt, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlad
#define INSTR_CREATE_smlad | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlad, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smladx
#define INSTR_CREATE_smladx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smladx, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlal
#define INSTR_CREATE_smlal | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlalbb
#define INSTR_CREATE_smlalbb | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlalbb, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlalbt
#define INSTR_CREATE_smlalbt | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlalbt, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlald
#define INSTR_CREATE_smlald | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlald, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlaldx
#define INSTR_CREATE_smlaldx | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlaldx, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlals
#define INSTR_CREATE_smlals | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlals, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlaltb
#define INSTR_CREATE_smlaltb | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlaltb, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlaltt
#define INSTR_CREATE_smlaltt | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlaltt, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlatb
#define INSTR_CREATE_smlatb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlatb, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlatt
#define INSTR_CREATE_smlatt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlatt, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlawb
#define INSTR_CREATE_smlawb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlawb, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlawt
#define INSTR_CREATE_smlawt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlawt, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlsd
#define INSTR_CREATE_smlsd | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlsd, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlsdx
#define INSTR_CREATE_smlsdx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smlsdx, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlsld
#define INSTR_CREATE_smlsld | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlsld, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smlsldx
#define INSTR_CREATE_smlsldx | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_smlsldx, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmla
#define INSTR_CREATE_smmla | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smmla, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmlar
#define INSTR_CREATE_smmlar | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smmlar, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmls
#define INSTR_CREATE_smmls | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smmls, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmlsr
#define INSTR_CREATE_smmlsr | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_smmlsr, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmul
#define INSTR_CREATE_smmul | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smmul, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smmulr
#define INSTR_CREATE_smmulr | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smmulr, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smuad
#define INSTR_CREATE_smuad | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smuad, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smuadx
#define INSTR_CREATE_smuadx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smuadx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smulbb
#define INSTR_CREATE_smulbb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smulbb, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smulbt
#define INSTR_CREATE_smulbt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smulbt, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smull
#define INSTR_CREATE_smull | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_smull, (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smulls
#define INSTR_CREATE_smulls | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_smulls, (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smultb
#define INSTR_CREATE_smultb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smultb, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smultt
#define INSTR_CREATE_smultt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smultt, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smulwb
#define INSTR_CREATE_smulwb | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smulwb, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smulwt
#define INSTR_CREATE_smulwt | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smulwt, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smusd
#define INSTR_CREATE_smusd | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smusd, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_smusdx
#define INSTR_CREATE_smusdx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_smusdx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srs
#define INSTR_CREATE_srs | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srs_wbimm
#define INSTR_CREATE_srs_wbimm | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsda
#define INSTR_CREATE_srsda | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsda_wbimm
#define INSTR_CREATE_srsda_wbimm | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsdb
#define INSTR_CREATE_srsdb | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsdb_wbimm
#define INSTR_CREATE_srsdb_wbimm | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsib
#define INSTR_CREATE_srsib | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_srsib_wbimm
#define INSTR_CREATE_srsib_wbimm | ( | dc, | |
mem, | |||
imm, | |||
statreg | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ssat16
#define INSTR_CREATE_ssat16 | ( | dc, | |
Rd, | |||
imm, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_ssat16, (Rd), (imm), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ssat_shimm
#define INSTR_CREATE_ssat_shimm | ( | dc, | |
Rd, | |||
imm, | |||
Rm, | |||
shift, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. imm2 The second integer constant opnd_t operand.
◆ INSTR_CREATE_ssax
#define INSTR_CREATE_ssax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_ssax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ssub16
#define INSTR_CREATE_ssub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_ssub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ssub8
#define INSTR_CREATE_ssub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_ssub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc
#define INSTR_CREATE_stc | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_stc, (mem), (imm), (cpreg), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc2
#define INSTR_CREATE_stc2 | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_stc2, (mem), (imm), (cpreg), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc2_wbimm
#define INSTR_CREATE_stc2_wbimm | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc2l
#define INSTR_CREATE_stc2l | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_stc2l, (mem), (imm), (cpreg), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc2l_wbimm
#define INSTR_CREATE_stc2l_wbimm | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stc_wbimm
#define INSTR_CREATE_stc_wbimm | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stcl
#define INSTR_CREATE_stcl | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_stcl, (mem), (imm), (cpreg), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stcl_wbimm
#define INSTR_CREATE_stcl_wbimm | ( | dc, | |
mem, | |||
imm, | |||
cpreg, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stl
#define INSTR_CREATE_stl | ( | dc, | |
mem, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_stl, (mem), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlb
#define INSTR_CREATE_stlb | ( | dc, | |
mem, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_stlb, (mem), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlex
#define INSTR_CREATE_stlex | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_stlex, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlexb
#define INSTR_CREATE_stlexb | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_stlexb, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlexd
#define INSTR_CREATE_stlexd | ( | dc, | |
mem, | |||
Rd, | |||
Rt, | |||
Rt2 | |||
) | instr_create_2dst_2src((dc), OP_stlexd, (mem), (Rd), (Rt), (Rt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlexh
#define INSTR_CREATE_stlexh | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_stlexh, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stlh
#define INSTR_CREATE_stlh | ( | dc, | |
mem, | |||
Rm | |||
) | instr_create_1dst_1src((dc), OP_stlh, (mem), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stm
#define INSTR_CREATE_stm | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_varsrc((dc), OP_stm, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stm_priv
#define INSTR_CREATE_stm_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stm_wb
#define INSTR_CREATE_stm_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmda
#define INSTR_CREATE_stmda | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_varsrc((dc), OP_stmda, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmda_priv
#define INSTR_CREATE_stmda_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmda_wb
#define INSTR_CREATE_stmda_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmdb
#define INSTR_CREATE_stmdb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_varsrc((dc), OP_stmdb, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmdb_priv
#define INSTR_CREATE_stmdb_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmdb_wb
#define INSTR_CREATE_stmdb_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmib
#define INSTR_CREATE_stmib | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_varsrc((dc), OP_stmib, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmib_priv
#define INSTR_CREATE_stmib_priv | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_stmib_wb
#define INSTR_CREATE_stmib_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_str
#define INSTR_CREATE_str | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_str, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_str_wbimm
#define INSTR_CREATE_str_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_str_wbreg
#define INSTR_CREATE_str_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strb
#define INSTR_CREATE_strb | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_strb, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strb_wbimm
#define INSTR_CREATE_strb_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strb_wbreg
#define INSTR_CREATE_strb_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strbt
#define INSTR_CREATE_strbt | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_strbt, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strbt_wbimm
#define INSTR_CREATE_strbt_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strbt_wbreg
#define INSTR_CREATE_strbt_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strd
#define INSTR_CREATE_strd | ( | dc, | |
mem, | |||
Rt, | |||
Rt2 | |||
) | instr_create_1dst_2src((dc), OP_strd, (mem), (Rt), (Rt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strd_wbimm
#define INSTR_CREATE_strd_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
Rt2, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strd_wbreg
#define INSTR_CREATE_strd_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rt2, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strex
#define INSTR_CREATE_strex | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_strex, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strexb
#define INSTR_CREATE_strexb | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_strexb, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strexd
#define INSTR_CREATE_strexd | ( | dc, | |
mem, | |||
Rd, | |||
Rt, | |||
Rt2 | |||
) | instr_create_2dst_2src((dc), OP_strexd, (mem), (Rd), (Rt), (Rt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strexh
#define INSTR_CREATE_strexh | ( | dc, | |
mem, | |||
Rd, | |||
Rm | |||
) | instr_create_2dst_1src((dc), OP_strexh, (mem), (Rd), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strh
#define INSTR_CREATE_strh | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_strh, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strh_wbimm
#define INSTR_CREATE_strh_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strh_wbreg
#define INSTR_CREATE_strh_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strht
#define INSTR_CREATE_strht | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_strht, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strht_wbimm
#define INSTR_CREATE_strht_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strht_wbreg
#define INSTR_CREATE_strht_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strt
#define INSTR_CREATE_strt | ( | dc, | |
mem, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_strt, (mem), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strt_wbimm
#define INSTR_CREATE_strt_wbimm | ( | dc, | |
mem, | |||
Rt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_strt_wbreg
#define INSTR_CREATE_strt_wbreg | ( | dc, | |
mem, | |||
Rt, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sub
#define INSTR_CREATE_sub | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sub_shimm
#define INSTR_CREATE_sub_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sub_shreg
#define INSTR_CREATE_sub_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_subs
#define INSTR_CREATE_subs | ( | dc, | |
Rd, | |||
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_subs_shimm
#define INSTR_CREATE_subs_shimm | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_subs_shreg
#define INSTR_CREATE_subs_shreg | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. Rn The source register opnd_t operand. Rm The second source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. Rs The third source register opnd_t operand.
◆ INSTR_CREATE_subw
#define INSTR_CREATE_subw | ( | dc, | |
Rd, | |||
Rn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_subw, (Rd), (Rn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_svc
#define INSTR_CREATE_svc | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_svc, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_swp
#define INSTR_CREATE_swp | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_swp, (mem), (Rd), (mem), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_swpb
#define INSTR_CREATE_swpb | ( | dc, | |
Rd, | |||
mem, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_swpb, (mem), (Rd), (mem), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtab
#define INSTR_CREATE_sxtab | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_sxtab, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtab16
#define INSTR_CREATE_sxtab16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_sxtab16, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtah
#define INSTR_CREATE_sxtah | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_sxtah, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtb
#define INSTR_CREATE_sxtb | ( | dc, | |
Rd, | |||
Rn | |||
) | instr_create_1dst_1src((dc), OP_sxtb, (Rd), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtb16
#define INSTR_CREATE_sxtb16 | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_sxtb16, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxtb_imm
#define INSTR_CREATE_sxtb_imm | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_sxtb, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxth
#define INSTR_CREATE_sxth | ( | dc, | |
Rd, | |||
Rn | |||
) | instr_create_1dst_1src((dc), OP_sxth, (Rd), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_sxth_imm
#define INSTR_CREATE_sxth_imm | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_sxth, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_tbb
#define INSTR_CREATE_tbb | ( | dc, | |
mem | |||
) | instr_create_0dst_1src((dc), OP_tbb, (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_tbh
#define INSTR_CREATE_tbh | ( | dc, | |
mem | |||
) | instr_create_0dst_1src((dc), OP_tbh, (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_teq
#define INSTR_CREATE_teq | ( | dc, | |
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_teq_shimm
#define INSTR_CREATE_teq_shimm | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_teq_shreg
#define INSTR_CREATE_teq_shreg | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_tst
#define INSTR_CREATE_tst | ( | dc, | |
Rn, | |||
Rm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_tst_shimm
#define INSTR_CREATE_tst_shimm | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_tst_shreg
#define INSTR_CREATE_tst_shreg | ( | dc, | |
Rn, | |||
Rm, | |||
shift, | |||
Rs | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uadd16
#define INSTR_CREATE_uadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uadd8
#define INSTR_CREATE_uadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uasx
#define INSTR_CREATE_uasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_ubfx
#define INSTR_CREATE_ubfx | ( | dc, | |
Rd, | |||
Rm, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_ubfx, (Rd), (Rm), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_udf
#define INSTR_CREATE_udf | ( | dc, | |
imm | |||
) | instr_create_0dst_1src((dc), OP_udf, (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_udiv
#define INSTR_CREATE_udiv | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_udiv, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhadd16
#define INSTR_CREATE_uhadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhadd8
#define INSTR_CREATE_uhadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhasx
#define INSTR_CREATE_uhasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhsax
#define INSTR_CREATE_uhsax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhsax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhsub16
#define INSTR_CREATE_uhsub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhsub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uhsub8
#define INSTR_CREATE_uhsub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uhsub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_umaal
#define INSTR_CREATE_umaal | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_umaal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_umlal
#define INSTR_CREATE_umlal | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_umlal, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_umlals
#define INSTR_CREATE_umlals | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_4src((dc), OP_umlals, (Rd), (Rd2), (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_umull
#define INSTR_CREATE_umull | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_umull, (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_umulls
#define INSTR_CREATE_umulls | ( | dc, | |
Rd, | |||
Rd2, | |||
Rn, | |||
Rm | |||
) | instr_create_2dst_2src((dc), OP_umulls, (Rd), (Rd2), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqadd16
#define INSTR_CREATE_uqadd16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqadd16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqadd8
#define INSTR_CREATE_uqadd8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqadd8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqasx
#define INSTR_CREATE_uqasx | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqasx, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqsax
#define INSTR_CREATE_uqsax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqsax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqsub16
#define INSTR_CREATE_uqsub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqsub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uqsub8
#define INSTR_CREATE_uqsub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_uqsub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usad8
#define INSTR_CREATE_usad8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_usad8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usada8
#define INSTR_CREATE_usada8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
Ra | |||
) | instr_create_1dst_3src((dc), OP_usada8, (Rd), (Rn), (Rm), (Ra)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usat16
#define INSTR_CREATE_usat16 | ( | dc, | |
Rd, | |||
imm, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_usat16, (Rd), (imm), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usat_shimm
#define INSTR_CREATE_usat_shimm | ( | dc, | |
Rd, | |||
imm, | |||
Rm, | |||
shift, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Rd The destination register opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. shift The dr_shift_type_t integer constant opnd_t operand. imm2 The second integer constant opnd_t operand.
◆ INSTR_CREATE_usax
#define INSTR_CREATE_usax | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_usax, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usub16
#define INSTR_CREATE_usub16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_usub16, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_usub8
#define INSTR_CREATE_usub8 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm | |||
) | instr_create_1dst_2src((dc), OP_usub8, (Rd), (Rn), (Rm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtab
#define INSTR_CREATE_uxtab | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_uxtab, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtab16
#define INSTR_CREATE_uxtab16 | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_uxtab16, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtah
#define INSTR_CREATE_uxtah | ( | dc, | |
Rd, | |||
Rn, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_uxtah, (Rd), (Rn), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtb
#define INSTR_CREATE_uxtb | ( | dc, | |
Rd, | |||
Rn | |||
) | instr_create_1dst_1src((dc), OP_uxtb, (Rd), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtb16
#define INSTR_CREATE_uxtb16 | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_uxtb16, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxtb_imm
#define INSTR_CREATE_uxtb_imm | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_uxtb, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxth
#define INSTR_CREATE_uxth | ( | dc, | |
Rd, | |||
Rn | |||
) | instr_create_1dst_1src((dc), OP_uxth, (Rd), (Rn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_uxth_imm
#define INSTR_CREATE_uxth_imm | ( | dc, | |
Rd, | |||
Rm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_uxth, (Rd), (Rm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_s16
#define INSTR_CREATE_vaba_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_s32
#define INSTR_CREATE_vaba_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_s8
#define INSTR_CREATE_vaba_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_u16
#define INSTR_CREATE_vaba_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_u32
#define INSTR_CREATE_vaba_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaba_u8
#define INSTR_CREATE_vaba_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaba_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_s16
#define INSTR_CREATE_vabal_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_s32
#define INSTR_CREATE_vabal_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_s8
#define INSTR_CREATE_vabal_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_u16
#define INSTR_CREATE_vabal_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_u32
#define INSTR_CREATE_vabal_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabal_u8
#define INSTR_CREATE_vabal_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabal_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_s16
#define INSTR_CREATE_vabd_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_s32
#define INSTR_CREATE_vabd_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_s8
#define INSTR_CREATE_vabd_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_u16
#define INSTR_CREATE_vabd_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_u32
#define INSTR_CREATE_vabd_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabd_u8
#define INSTR_CREATE_vabd_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabd_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_s16
#define INSTR_CREATE_vabdl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_s32
#define INSTR_CREATE_vabdl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_s8
#define INSTR_CREATE_vabdl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_u16
#define INSTR_CREATE_vabdl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_u32
#define INSTR_CREATE_vabdl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabdl_u8
#define INSTR_CREATE_vabdl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vabdl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabs_f32
#define INSTR_CREATE_vabs_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vabs_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabs_f64
#define INSTR_CREATE_vabs_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vabs_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabs_s16
#define INSTR_CREATE_vabs_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vabs_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabs_s32
#define INSTR_CREATE_vabs_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vabs_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vabs_s8
#define INSTR_CREATE_vabs_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vabs_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vacge_f32
#define INSTR_CREATE_vacge_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vacge_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vacgt_f32
#define INSTR_CREATE_vacgt_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vacgt_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_f32
#define INSTR_CREATE_vadd_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_f64
#define INSTR_CREATE_vadd_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_i16
#define INSTR_CREATE_vadd_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_i32
#define INSTR_CREATE_vadd_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_i64
#define INSTR_CREATE_vadd_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vadd_i8
#define INSTR_CREATE_vadd_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vadd_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddhn_i16
#define INSTR_CREATE_vaddhn_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddhn_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddhn_i32
#define INSTR_CREATE_vaddhn_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddhn_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddhn_i64
#define INSTR_CREATE_vaddhn_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddhn_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_s16
#define INSTR_CREATE_vaddl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_s32
#define INSTR_CREATE_vaddl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_s8
#define INSTR_CREATE_vaddl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_u16
#define INSTR_CREATE_vaddl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_u32
#define INSTR_CREATE_vaddl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddl_u8
#define INSTR_CREATE_vaddl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_s16
#define INSTR_CREATE_vaddw_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_s32
#define INSTR_CREATE_vaddw_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_s8
#define INSTR_CREATE_vaddw_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_u16
#define INSTR_CREATE_vaddw_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_u32
#define INSTR_CREATE_vaddw_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vaddw_u8
#define INSTR_CREATE_vaddw_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vaddw_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vand
#define INSTR_CREATE_vand | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vand, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbic
#define INSTR_CREATE_vbic | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vbic, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbic_i16
#define INSTR_CREATE_vbic_i16 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vbic_i16, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbic_i32
#define INSTR_CREATE_vbic_i32 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vbic_i32, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbif
#define INSTR_CREATE_vbif | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vbif, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbit
#define INSTR_CREATE_vbit | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vbit, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vbsl
#define INSTR_CREATE_vbsl | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vbsl, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vceq_f32
#define INSTR_CREATE_vceq_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vceq_f32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vceq_i16
#define INSTR_CREATE_vceq_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vceq_i16, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vceq_i32
#define INSTR_CREATE_vceq_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vceq_i32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vceq_i8
#define INSTR_CREATE_vceq_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vceq_i8, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_f32
#define INSTR_CREATE_vcge_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcge_f32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_s16
#define INSTR_CREATE_vcge_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcge_s16, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_s32
#define INSTR_CREATE_vcge_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcge_s32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_s8
#define INSTR_CREATE_vcge_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcge_s8, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_u16
#define INSTR_CREATE_vcge_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcge_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_u32
#define INSTR_CREATE_vcge_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcge_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcge_u8
#define INSTR_CREATE_vcge_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcge_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_f32
#define INSTR_CREATE_vcgt_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_f32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_s16
#define INSTR_CREATE_vcgt_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_s16, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_s32
#define INSTR_CREATE_vcgt_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_s32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_s8
#define INSTR_CREATE_vcgt_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_s8, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_u16
#define INSTR_CREATE_vcgt_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_u32
#define INSTR_CREATE_vcgt_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcgt_u8
#define INSTR_CREATE_vcgt_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vcgt_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcle_f32
#define INSTR_CREATE_vcle_f32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcle_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcle_s16
#define INSTR_CREATE_vcle_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcle_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcle_s32
#define INSTR_CREATE_vcle_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcle_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcle_s8
#define INSTR_CREATE_vcle_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcle_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcls_s16
#define INSTR_CREATE_vcls_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcls_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcls_s32
#define INSTR_CREATE_vcls_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcls_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcls_s8
#define INSTR_CREATE_vcls_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcls_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclt_f32
#define INSTR_CREATE_vclt_f32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vclt_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclt_s16
#define INSTR_CREATE_vclt_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vclt_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclt_s32
#define INSTR_CREATE_vclt_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vclt_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclt_s8
#define INSTR_CREATE_vclt_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vclt_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclz_i16
#define INSTR_CREATE_vclz_i16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vclz_i16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclz_i32
#define INSTR_CREATE_vclz_i32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vclz_i32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vclz_i8
#define INSTR_CREATE_vclz_i8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vclz_i8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcmp_f32
#define INSTR_CREATE_vcmp_f32 | ( | dc, | |
Vt, | |||
Vm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcmp_f64
#define INSTR_CREATE_vcmp_f64 | ( | dc, | |
Vt, | |||
Vm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcmpe_f32
#define INSTR_CREATE_vcmpe_f32 | ( | dc, | |
Vt, | |||
Vm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcmpe_f64
#define INSTR_CREATE_vcmpe_f64 | ( | dc, | |
Vt, | |||
Vm_or_imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcnt_8
#define INSTR_CREATE_vcnt_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcnt_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f16_f32
#define INSTR_CREATE_vcvt_f16_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f16_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_f16
#define INSTR_CREATE_vcvt_f32_f16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f32_f16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_f64
#define INSTR_CREATE_vcvt_f32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_s16
#define INSTR_CREATE_vcvt_f32_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f32_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_s32
#define INSTR_CREATE_vcvt_f32_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f32_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_s32_imm
#define INSTR_CREATE_vcvt_f32_s32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f32_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_u16
#define INSTR_CREATE_vcvt_f32_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f32_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_u32
#define INSTR_CREATE_vcvt_f32_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f32_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f32_u32_imm
#define INSTR_CREATE_vcvt_f32_u32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f32_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_f32
#define INSTR_CREATE_vcvt_f64_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f64_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_s16
#define INSTR_CREATE_vcvt_f64_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f64_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_s32
#define INSTR_CREATE_vcvt_f64_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f64_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_s32_imm
#define INSTR_CREATE_vcvt_f64_s32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f64_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_u16
#define INSTR_CREATE_vcvt_f64_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f64_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_u32
#define INSTR_CREATE_vcvt_f64_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_f64_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_f64_u32_imm
#define INSTR_CREATE_vcvt_f64_u32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_f64_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s16_f32
#define INSTR_CREATE_vcvt_s16_f32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_s16_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s16_f64
#define INSTR_CREATE_vcvt_s16_f64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_s16_f64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s32_f32
#define INSTR_CREATE_vcvt_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s32_f32_imm
#define INSTR_CREATE_vcvt_s32_f32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_s32_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s32_f64
#define INSTR_CREATE_vcvt_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_s32_f64_imm
#define INSTR_CREATE_vcvt_s32_f64_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_s32_f64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u16_f32
#define INSTR_CREATE_vcvt_u16_f32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_u16_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u16_f64
#define INSTR_CREATE_vcvt_u16_f64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_u16_f64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u32_f32
#define INSTR_CREATE_vcvt_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u32_f32_imm
#define INSTR_CREATE_vcvt_u32_f32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_u32_f32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u32_f64
#define INSTR_CREATE_vcvt_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvt_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvt_u32_f64_imm
#define INSTR_CREATE_vcvt_u32_f64_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vcvt_u32_f64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvta_s32_f32
#define INSTR_CREATE_vcvta_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvta_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvta_s32_f64
#define INSTR_CREATE_vcvta_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvta_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvta_u32_f32
#define INSTR_CREATE_vcvta_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvta_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvta_u32_f64
#define INSTR_CREATE_vcvta_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvta_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtb_f16_f32
#define INSTR_CREATE_vcvtb_f16_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtb_f16_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtb_f16_f64
#define INSTR_CREATE_vcvtb_f16_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtb_f16_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtb_f32_f16
#define INSTR_CREATE_vcvtb_f32_f16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtb_f32_f16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtb_f64_f16
#define INSTR_CREATE_vcvtb_f64_f16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtb_f64_f16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtm_s32_f32
#define INSTR_CREATE_vcvtm_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtm_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtm_s32_f64
#define INSTR_CREATE_vcvtm_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtm_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtm_u32_f32
#define INSTR_CREATE_vcvtm_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtm_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtm_u32_f64
#define INSTR_CREATE_vcvtm_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtm_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtn_s32_f32
#define INSTR_CREATE_vcvtn_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtn_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtn_s32_f64
#define INSTR_CREATE_vcvtn_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtn_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtn_u32_f32
#define INSTR_CREATE_vcvtn_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtn_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtn_u32_f64
#define INSTR_CREATE_vcvtn_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtn_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtp_s32_f32
#define INSTR_CREATE_vcvtp_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtp_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtp_s32_f64
#define INSTR_CREATE_vcvtp_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtp_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtp_u32_f32
#define INSTR_CREATE_vcvtp_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtp_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtp_u32_f64
#define INSTR_CREATE_vcvtp_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtp_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtr_s32_f32
#define INSTR_CREATE_vcvtr_s32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtr_s32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtr_s32_f64
#define INSTR_CREATE_vcvtr_s32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtr_s32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtr_u32_f32
#define INSTR_CREATE_vcvtr_u32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtr_u32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtr_u32_f64
#define INSTR_CREATE_vcvtr_u32_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtr_u32_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtt_f16_f32
#define INSTR_CREATE_vcvtt_f16_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtt_f16_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtt_f16_f64
#define INSTR_CREATE_vcvtt_f16_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtt_f16_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtt_f32_f16
#define INSTR_CREATE_vcvtt_f32_f16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtt_f32_f16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vcvtt_f64_f16
#define INSTR_CREATE_vcvtt_f64_f16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vcvtt_f64_f16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdiv_f32
#define INSTR_CREATE_vdiv_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vdiv_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdiv_f64
#define INSTR_CREATE_vdiv_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vdiv_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_16
#define INSTR_CREATE_vdup_16 | ( | dc, | |
Vd, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_vdup_16, (Vd), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_16_imm
#define INSTR_CREATE_vdup_16_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vdup_16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_32
#define INSTR_CREATE_vdup_32 | ( | dc, | |
Vd, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_vdup_32, (Vd), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_32_imm
#define INSTR_CREATE_vdup_32_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vdup_32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_8
#define INSTR_CREATE_vdup_8 | ( | dc, | |
Vd, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_vdup_8, (Vd), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vdup_8_imm
#define INSTR_CREATE_vdup_8_imm | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vdup_8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_veor
#define INSTR_CREATE_veor | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_veor, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vext
#define INSTR_CREATE_vext | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vext, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfma_f32
#define INSTR_CREATE_vfma_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfma_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfma_f64
#define INSTR_CREATE_vfma_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfma_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfms_f32
#define INSTR_CREATE_vfms_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfms_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfms_f64
#define INSTR_CREATE_vfms_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfms_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfnma_f32
#define INSTR_CREATE_vfnma_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfnma_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfnma_f64
#define INSTR_CREATE_vfnma_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfnma_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfnms_f32
#define INSTR_CREATE_vfnms_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfnms_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vfnms_f64
#define INSTR_CREATE_vfnms_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vfnms_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_s16
#define INSTR_CREATE_vhadd_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_s32
#define INSTR_CREATE_vhadd_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_s8
#define INSTR_CREATE_vhadd_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_u16
#define INSTR_CREATE_vhadd_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_u32
#define INSTR_CREATE_vhadd_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhadd_u8
#define INSTR_CREATE_vhadd_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhadd_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_s16
#define INSTR_CREATE_vhsub_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_s32
#define INSTR_CREATE_vhsub_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_s8
#define INSTR_CREATE_vhsub_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_u16
#define INSTR_CREATE_vhsub_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_u32
#define INSTR_CREATE_vhsub_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vhsub_u8
#define INSTR_CREATE_vhsub_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vhsub_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_16
#define INSTR_CREATE_vld1_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_16_wbimm
#define INSTR_CREATE_vld1_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_16_wbreg
#define INSTR_CREATE_vld1_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_32
#define INSTR_CREATE_vld1_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_32_wbimm
#define INSTR_CREATE_vld1_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_32_wbreg
#define INSTR_CREATE_vld1_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_64
#define INSTR_CREATE_vld1_64 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_64_wbimm
#define INSTR_CREATE_vld1_64_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_64_wbreg
#define INSTR_CREATE_vld1_64_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_8
#define INSTR_CREATE_vld1_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_8_wbimm
#define INSTR_CREATE_vld1_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_8_wbreg
#define INSTR_CREATE_vld1_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_16
#define INSTR_CREATE_vld1_dup_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_16_wbimm
#define INSTR_CREATE_vld1_dup_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_16_wbreg
#define INSTR_CREATE_vld1_dup_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_32
#define INSTR_CREATE_vld1_dup_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_32_wbimm
#define INSTR_CREATE_vld1_dup_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_32_wbreg
#define INSTR_CREATE_vld1_dup_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_dup_8
#define INSTR_CREATE_vld1_dup_8 | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_dup_8_wb
#define INSTR_CREATE_vld1_dup_8_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_dup_8_wbreg
#define INSTR_CREATE_vld1_dup_8_wbreg | ( | dc, | |
mem, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld1_lane_16
#define INSTR_CREATE_vld1_lane_16 | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_vld1_lane_16, (Vd), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_16_wbimm
#define INSTR_CREATE_vld1_lane_16_wbimm | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_16_wbreg
#define INSTR_CREATE_vld1_lane_16_wbreg | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_32
#define INSTR_CREATE_vld1_lane_32 | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_vld1_lane_32, (Vd), (mem), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_32_wbimm
#define INSTR_CREATE_vld1_lane_32_wbimm | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_32_wbreg
#define INSTR_CREATE_vld1_lane_32_wbreg | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
imm2, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_8
#define INSTR_CREATE_vld1_lane_8 | ( | dc, | |
Vd, | |||
mem, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vld1_lane_8, (Vd), (mem), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_8_wbimm
#define INSTR_CREATE_vld1_lane_8_wbimm | ( | dc, | |
Vd, | |||
mem, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld1_lane_8_wbreg
#define INSTR_CREATE_vld1_lane_8_wbreg | ( | dc, | |
Vd, | |||
mem, | |||
imm, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld2_16
#define INSTR_CREATE_vld2_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_16_wbimm
#define INSTR_CREATE_vld2_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_16_wbreg
#define INSTR_CREATE_vld2_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_32
#define INSTR_CREATE_vld2_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_32_wbimm
#define INSTR_CREATE_vld2_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_32_wbreg
#define INSTR_CREATE_vld2_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_8
#define INSTR_CREATE_vld2_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_8_wbimm
#define INSTR_CREATE_vld2_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_8_wbreg
#define INSTR_CREATE_vld2_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_16
#define INSTR_CREATE_vld2_dup_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_16_wbimm
#define INSTR_CREATE_vld2_dup_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_16_wbreg
#define INSTR_CREATE_vld2_dup_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_32
#define INSTR_CREATE_vld2_dup_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_32_wbimm
#define INSTR_CREATE_vld2_dup_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_32_wbreg
#define INSTR_CREATE_vld2_dup_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_dup_8
#define INSTR_CREATE_vld2_dup_8 | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld2_dup_8_wb
#define INSTR_CREATE_vld2_dup_8_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld2_dup_8_wbreg
#define INSTR_CREATE_vld2_dup_8_wbreg | ( | dc, | |
mem, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_16
#define INSTR_CREATE_vld2_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_16_wbimm
#define INSTR_CREATE_vld2_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_16_wbreg
#define INSTR_CREATE_vld2_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_32
#define INSTR_CREATE_vld2_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_32_wbimm
#define INSTR_CREATE_vld2_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_32_wbreg
#define INSTR_CREATE_vld2_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_8
#define INSTR_CREATE_vld2_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_8_wbimm
#define INSTR_CREATE_vld2_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld2_lane_8_wbreg
#define INSTR_CREATE_vld2_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_16
#define INSTR_CREATE_vld3_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_16_wbimm
#define INSTR_CREATE_vld3_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_16_wbreg
#define INSTR_CREATE_vld3_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_32
#define INSTR_CREATE_vld3_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_32_wbimm
#define INSTR_CREATE_vld3_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_32_wbreg
#define INSTR_CREATE_vld3_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_8
#define INSTR_CREATE_vld3_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_8_wbimm
#define INSTR_CREATE_vld3_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_8_wbreg
#define INSTR_CREATE_vld3_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_16
#define INSTR_CREATE_vld3_dup_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_16_wbimm
#define INSTR_CREATE_vld3_dup_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_16_wbreg
#define INSTR_CREATE_vld3_dup_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_32
#define INSTR_CREATE_vld3_dup_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_32_wbimm
#define INSTR_CREATE_vld3_dup_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_32_wbreg
#define INSTR_CREATE_vld3_dup_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_dup_8
#define INSTR_CREATE_vld3_dup_8 | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld3_dup_8_wb
#define INSTR_CREATE_vld3_dup_8_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld3_dup_8_wbreg
#define INSTR_CREATE_vld3_dup_8_wbreg | ( | dc, | |
mem, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_16
#define INSTR_CREATE_vld3_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_16_wbimm
#define INSTR_CREATE_vld3_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_16_wbreg
#define INSTR_CREATE_vld3_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_32
#define INSTR_CREATE_vld3_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_32_wbimm
#define INSTR_CREATE_vld3_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_32_wbreg
#define INSTR_CREATE_vld3_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_8
#define INSTR_CREATE_vld3_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_8_wbimm
#define INSTR_CREATE_vld3_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld3_lane_8_wbreg
#define INSTR_CREATE_vld3_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_16
#define INSTR_CREATE_vld4_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_16_wbimm
#define INSTR_CREATE_vld4_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_16_wbreg
#define INSTR_CREATE_vld4_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_32
#define INSTR_CREATE_vld4_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_32_wbimm
#define INSTR_CREATE_vld4_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_32_wbreg
#define INSTR_CREATE_vld4_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_8
#define INSTR_CREATE_vld4_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_8_wbimm
#define INSTR_CREATE_vld4_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_8_wbreg
#define INSTR_CREATE_vld4_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_16
#define INSTR_CREATE_vld4_dup_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_16_wbimm
#define INSTR_CREATE_vld4_dup_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_16_wbreg
#define INSTR_CREATE_vld4_dup_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_32
#define INSTR_CREATE_vld4_dup_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_32_wbimm
#define INSTR_CREATE_vld4_dup_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_32_wbreg
#define INSTR_CREATE_vld4_dup_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_dup_8
#define INSTR_CREATE_vld4_dup_8 | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld4_dup_8_wb
#define INSTR_CREATE_vld4_dup_8_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vld4_dup_8_wbreg
#define INSTR_CREATE_vld4_dup_8_wbreg | ( | dc, | |
mem, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_16
#define INSTR_CREATE_vld4_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_16_wbimm
#define INSTR_CREATE_vld4_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_16_wbreg
#define INSTR_CREATE_vld4_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_32
#define INSTR_CREATE_vld4_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_32_wbimm
#define INSTR_CREATE_vld4_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_32_wbreg
#define INSTR_CREATE_vld4_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_8
#define INSTR_CREATE_vld4_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_8_wbimm
#define INSTR_CREATE_vld4_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vld4_lane_8_wbreg
#define INSTR_CREATE_vld4_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vldm
#define INSTR_CREATE_vldm | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_vardst((dc), OP_vldm, 0, 1, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vldm_wb
#define INSTR_CREATE_vldm_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vldmdb
#define INSTR_CREATE_vldmdb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vldr
#define INSTR_CREATE_vldr | ( | dc, | |
Vd, | |||
mem | |||
) | instr_create_1dst_1src((dc), OP_vldr, (Vd), (mem)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_f32
#define INSTR_CREATE_vmax_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_s16
#define INSTR_CREATE_vmax_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_s32
#define INSTR_CREATE_vmax_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_s8
#define INSTR_CREATE_vmax_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_u16
#define INSTR_CREATE_vmax_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_u32
#define INSTR_CREATE_vmax_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmax_u8
#define INSTR_CREATE_vmax_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmax_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmaxnm_f32
#define INSTR_CREATE_vmaxnm_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmaxnm_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmaxnm_f64
#define INSTR_CREATE_vmaxnm_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmaxnm_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_f32
#define INSTR_CREATE_vmin_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_s16
#define INSTR_CREATE_vmin_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_s32
#define INSTR_CREATE_vmin_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_s8
#define INSTR_CREATE_vmin_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_u16
#define INSTR_CREATE_vmin_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_u32
#define INSTR_CREATE_vmin_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmin_u8
#define INSTR_CREATE_vmin_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmin_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vminnm_f32
#define INSTR_CREATE_vminnm_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vminnm_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vminnm_f64
#define INSTR_CREATE_vminnm_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vminnm_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_f32
#define INSTR_CREATE_vmla_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmla_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_f32_imm
#define INSTR_CREATE_vmla_f32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmla_f32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_f64
#define INSTR_CREATE_vmla_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmla_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_i16
#define INSTR_CREATE_vmla_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmla_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_i16_imm
#define INSTR_CREATE_vmla_i16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmla_i16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_i32
#define INSTR_CREATE_vmla_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmla_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_i32_imm
#define INSTR_CREATE_vmla_i32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmla_i32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmla_i8
#define INSTR_CREATE_vmla_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmla_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_s16
#define INSTR_CREATE_vmlal_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_s16_imm
#define INSTR_CREATE_vmlal_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlal_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_s32
#define INSTR_CREATE_vmlal_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_s32_imm
#define INSTR_CREATE_vmlal_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlal_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_s8
#define INSTR_CREATE_vmlal_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_u16
#define INSTR_CREATE_vmlal_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_u16_imm
#define INSTR_CREATE_vmlal_u16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlal_u16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_u32
#define INSTR_CREATE_vmlal_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_u32_imm
#define INSTR_CREATE_vmlal_u32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlal_u32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlal_u8
#define INSTR_CREATE_vmlal_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlal_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_f32
#define INSTR_CREATE_vmls_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmls_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_f32_imm
#define INSTR_CREATE_vmls_f32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmls_f32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_f64
#define INSTR_CREATE_vmls_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmls_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_i16
#define INSTR_CREATE_vmls_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmls_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_i16_imm
#define INSTR_CREATE_vmls_i16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmls_i16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_i32
#define INSTR_CREATE_vmls_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmls_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_i32_imm
#define INSTR_CREATE_vmls_i32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmls_i32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmls_i8
#define INSTR_CREATE_vmls_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmls_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_s16
#define INSTR_CREATE_vmlsl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_s16_imm
#define INSTR_CREATE_vmlsl_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlsl_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_s32
#define INSTR_CREATE_vmlsl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_s32_imm
#define INSTR_CREATE_vmlsl_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlsl_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_s8
#define INSTR_CREATE_vmlsl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_u16
#define INSTR_CREATE_vmlsl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_u16_imm
#define INSTR_CREATE_vmlsl_u16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlsl_u16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_u32
#define INSTR_CREATE_vmlsl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_u32_imm
#define INSTR_CREATE_vmlsl_u32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmlsl_u32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmlsl_u8
#define INSTR_CREATE_vmlsl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmlsl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_16
#define INSTR_CREATE_vmov_16 | ( | dc, | |
Vd, | |||
Rt, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_16, (Vd), (Rt), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_32_g2s
#define INSTR_CREATE_vmov_32_g2s | ( | dc, | |
Vd, | |||
Rt, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_32, (Vd), (Rt), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_32_s2g
#define INSTR_CREATE_vmov_32_s2g | ( | dc, | |
Rd, | |||
Vn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_32, (Rd), (Vn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_8
#define INSTR_CREATE_vmov_8 | ( | dc, | |
Vd, | |||
Rt, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_8, (Vd), (Rt), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_f32
#define INSTR_CREATE_vmov_f32 | ( | dc, | |
Vd, | |||
Vm_or_imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_f32, (Vd), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_f64
#define INSTR_CREATE_vmov_f64 | ( | dc, | |
Vd, | |||
Vm_or_imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_f64, (Vd), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_g2s
#define INSTR_CREATE_vmov_g2s | ( | dc, | |
Vd, | |||
Rt | |||
) | instr_create_1dst_1src((dc), OP_vmov, (Vd), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_gg2s
#define INSTR_CREATE_vmov_gg2s | ( | dc, | |
Vd, | |||
Rt, | |||
Rt2 | |||
) | instr_create_1dst_2src((dc), OP_vmov, (Vd), (Rt), (Rt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_gg2ss
#define INSTR_CREATE_vmov_gg2ss | ( | dc, | |
Vd, | |||
Vd2, | |||
Rt, | |||
Rt2 | |||
) | instr_create_2dst_2src((dc), OP_vmov, (Vd), (Vd2), (Rt), (Rt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_i16
#define INSTR_CREATE_vmov_i16 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_i16, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_i32
#define INSTR_CREATE_vmov_i32 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_i32, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_i64
#define INSTR_CREATE_vmov_i64 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_i64, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_i8
#define INSTR_CREATE_vmov_i8 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmov_i8, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_s16
#define INSTR_CREATE_vmov_s16 | ( | dc, | |
Rd, | |||
Vn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_s16, (Rd), (Vn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_s2g
#define INSTR_CREATE_vmov_s2g | ( | dc, | |
Rd, | |||
Vn | |||
) | instr_create_1dst_1src((dc), OP_vmov, (Rd), (Vn)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_s2gg
#define INSTR_CREATE_vmov_s2gg | ( | dc, | |
Ra, | |||
Rd, | |||
Vm | |||
) | instr_create_2dst_1src((dc), OP_vmov, (Ra), (Rd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_s8
#define INSTR_CREATE_vmov_s8 | ( | dc, | |
Rd, | |||
Vn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_s8, (Rd), (Vn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_ss2gg
#define INSTR_CREATE_vmov_ss2gg | ( | dc, | |
Rd, | |||
Rd2, | |||
Vt, | |||
Vt2 | |||
) | instr_create_2dst_2src((dc), OP_vmov, (Rd), (Rd2), (Vt), (Vt2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_u16
#define INSTR_CREATE_vmov_u16 | ( | dc, | |
Rd, | |||
Vn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_u16, (Rd), (Vn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmov_u8
#define INSTR_CREATE_vmov_u8 | ( | dc, | |
Rd, | |||
Vn, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vmov_u8, (Rd), (Vn), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_s16
#define INSTR_CREATE_vmovl_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_s32
#define INSTR_CREATE_vmovl_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_s8
#define INSTR_CREATE_vmovl_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_u16
#define INSTR_CREATE_vmovl_u16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_u16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_u32
#define INSTR_CREATE_vmovl_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovl_u8
#define INSTR_CREATE_vmovl_u8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovl_u8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovn_i16
#define INSTR_CREATE_vmovn_i16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovn_i16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovn_i32
#define INSTR_CREATE_vmovn_i32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovn_i32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmovn_i64
#define INSTR_CREATE_vmovn_i64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmovn_i64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmrs
#define INSTR_CREATE_vmrs | ( | dc, | |
Rd | |||
) | instr_create_1dst_1src((dc), OP_vmrs, (Rd), opnd_create_reg(DR_REG_FPSCR)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmrs_imm
#define INSTR_CREATE_vmrs_imm | ( | dc, | |
Rd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmrs, (Rd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmsr
#define INSTR_CREATE_vmsr | ( | dc, | |
Rt | |||
) | instr_create_1dst_1src((dc), OP_vmsr, opnd_create_reg(DR_REG_FPSCR), (Rt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmsr_imm
#define INSTR_CREATE_vmsr_imm | ( | dc, | |
Rt, | |||
imm | |||
) | instr_create_0dst_2src((dc), OP_vmsr, (Rt), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_f32
#define INSTR_CREATE_vmul_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_f32_imm
#define INSTR_CREATE_vmul_f32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmul_f32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_f64
#define INSTR_CREATE_vmul_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_i16
#define INSTR_CREATE_vmul_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_i16_imm
#define INSTR_CREATE_vmul_i16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmul_i16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_i32
#define INSTR_CREATE_vmul_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_i32_imm
#define INSTR_CREATE_vmul_i32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmul_i32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_i8
#define INSTR_CREATE_vmul_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_p32
#define INSTR_CREATE_vmul_p32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_p32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmul_p8
#define INSTR_CREATE_vmul_p8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmul_p8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_p32
#define INSTR_CREATE_vmull_p32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_p32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_p8
#define INSTR_CREATE_vmull_p8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_p8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_s16
#define INSTR_CREATE_vmull_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_s16_imm
#define INSTR_CREATE_vmull_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmull_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_s32
#define INSTR_CREATE_vmull_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_s32_imm
#define INSTR_CREATE_vmull_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmull_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_s8
#define INSTR_CREATE_vmull_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_u16
#define INSTR_CREATE_vmull_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_u16_imm
#define INSTR_CREATE_vmull_u16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmull_u16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_u32
#define INSTR_CREATE_vmull_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_u32_imm
#define INSTR_CREATE_vmull_u32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vmull_u32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmull_u8
#define INSTR_CREATE_vmull_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vmull_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmvn
#define INSTR_CREATE_vmvn | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vmvn, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmvn_i16
#define INSTR_CREATE_vmvn_i16 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmvn_i16, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vmvn_i32
#define INSTR_CREATE_vmvn_i32 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vmvn_i32, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vneg_f32
#define INSTR_CREATE_vneg_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vneg_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vneg_f64
#define INSTR_CREATE_vneg_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vneg_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vneg_s16
#define INSTR_CREATE_vneg_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vneg_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vneg_s32
#define INSTR_CREATE_vneg_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vneg_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vneg_s8
#define INSTR_CREATE_vneg_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vneg_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmla_f32
#define INSTR_CREATE_vnmla_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmla_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmla_f64
#define INSTR_CREATE_vnmla_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmla_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmls_f32
#define INSTR_CREATE_vnmls_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmls_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmls_f64
#define INSTR_CREATE_vnmls_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmls_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmul_f32
#define INSTR_CREATE_vnmul_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmul_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vnmul_f64
#define INSTR_CREATE_vnmul_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vnmul_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vorn
#define INSTR_CREATE_vorn | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vorn, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vorr
#define INSTR_CREATE_vorr | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vorr, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vorr_i16
#define INSTR_CREATE_vorr_i16 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vorr_i16, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vorr_i32
#define INSTR_CREATE_vorr_i32 | ( | dc, | |
Vd, | |||
imm | |||
) | instr_create_1dst_1src((dc), OP_vorr_i32, (Vd), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_s16
#define INSTR_CREATE_vpadal_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_s32
#define INSTR_CREATE_vpadal_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_s8
#define INSTR_CREATE_vpadal_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_u16
#define INSTR_CREATE_vpadal_u16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_u16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_u32
#define INSTR_CREATE_vpadal_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadal_u8
#define INSTR_CREATE_vpadal_u8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpadal_u8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadd_f32
#define INSTR_CREATE_vpadd_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpadd_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadd_i16
#define INSTR_CREATE_vpadd_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpadd_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadd_i32
#define INSTR_CREATE_vpadd_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpadd_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpadd_i8
#define INSTR_CREATE_vpadd_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpadd_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_s16
#define INSTR_CREATE_vpaddl_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_s32
#define INSTR_CREATE_vpaddl_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_s8
#define INSTR_CREATE_vpaddl_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_u16
#define INSTR_CREATE_vpaddl_u16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_u16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_u32
#define INSTR_CREATE_vpaddl_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpaddl_u8
#define INSTR_CREATE_vpaddl_u8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vpaddl_u8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_f32
#define INSTR_CREATE_vpmax_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_s16
#define INSTR_CREATE_vpmax_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_s32
#define INSTR_CREATE_vpmax_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_s8
#define INSTR_CREATE_vpmax_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_u16
#define INSTR_CREATE_vpmax_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_u32
#define INSTR_CREATE_vpmax_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmax_u8
#define INSTR_CREATE_vpmax_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmax_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_f32
#define INSTR_CREATE_vpmin_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_s16
#define INSTR_CREATE_vpmin_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_s32
#define INSTR_CREATE_vpmin_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_s8
#define INSTR_CREATE_vpmin_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_u16
#define INSTR_CREATE_vpmin_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_u32
#define INSTR_CREATE_vpmin_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vpmin_u8
#define INSTR_CREATE_vpmin_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vpmin_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqabs_s16
#define INSTR_CREATE_vqabs_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqabs_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqabs_s32
#define INSTR_CREATE_vqabs_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqabs_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqabs_s8
#define INSTR_CREATE_vqabs_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqabs_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_s16
#define INSTR_CREATE_vqadd_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_s32
#define INSTR_CREATE_vqadd_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_s64
#define INSTR_CREATE_vqadd_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_s64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_s8
#define INSTR_CREATE_vqadd_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_u16
#define INSTR_CREATE_vqadd_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_u32
#define INSTR_CREATE_vqadd_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_u64
#define INSTR_CREATE_vqadd_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_u64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqadd_u8
#define INSTR_CREATE_vqadd_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqadd_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlal_s16
#define INSTR_CREATE_vqdmlal_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmlal_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlal_s16_imm
#define INSTR_CREATE_vqdmlal_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmlal_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlal_s32
#define INSTR_CREATE_vqdmlal_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmlal_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlal_s32_imm
#define INSTR_CREATE_vqdmlal_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmlal_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlsl_s16
#define INSTR_CREATE_vqdmlsl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmlsl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlsl_s16_imm
#define INSTR_CREATE_vqdmlsl_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmlsl_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlsl_s32
#define INSTR_CREATE_vqdmlsl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmlsl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmlsl_s32_imm
#define INSTR_CREATE_vqdmlsl_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmlsl_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmulh_s16
#define INSTR_CREATE_vqdmulh_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmulh_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmulh_s16_imm
#define INSTR_CREATE_vqdmulh_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmulh_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmulh_s32
#define INSTR_CREATE_vqdmulh_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmulh_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmulh_s32_imm
#define INSTR_CREATE_vqdmulh_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmulh_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmull_s16
#define INSTR_CREATE_vqdmull_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmull_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmull_s16_imm
#define INSTR_CREATE_vqdmull_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmull_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmull_s32
#define INSTR_CREATE_vqdmull_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqdmull_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqdmull_s32_imm
#define INSTR_CREATE_vqdmull_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqdmull_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_s16
#define INSTR_CREATE_vqmovn_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_s32
#define INSTR_CREATE_vqmovn_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_s64
#define INSTR_CREATE_vqmovn_s64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_s64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_u16
#define INSTR_CREATE_vqmovn_u16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_u16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_u32
#define INSTR_CREATE_vqmovn_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovn_u64
#define INSTR_CREATE_vqmovn_u64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovn_u64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovun_s16
#define INSTR_CREATE_vqmovun_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovun_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovun_s32
#define INSTR_CREATE_vqmovun_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovun_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqmovun_s64
#define INSTR_CREATE_vqmovun_s64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqmovun_s64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqneg_s16
#define INSTR_CREATE_vqneg_s16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqneg_s16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqneg_s32
#define INSTR_CREATE_vqneg_s32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqneg_s32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqneg_s8
#define INSTR_CREATE_vqneg_s8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vqneg_s8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrdmulh_s16
#define INSTR_CREATE_vqrdmulh_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrdmulh_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrdmulh_s16_imm
#define INSTR_CREATE_vqrdmulh_s16_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqrdmulh_s16, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrdmulh_s32
#define INSTR_CREATE_vqrdmulh_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrdmulh_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrdmulh_s32_imm
#define INSTR_CREATE_vqrdmulh_s32_imm | ( | dc, | |
Vd, | |||
Vn, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_3src((dc), OP_vqrdmulh_s32, (Vd), (Vn), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_s16
#define INSTR_CREATE_vqrshl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_s32
#define INSTR_CREATE_vqrshl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_s64
#define INSTR_CREATE_vqrshl_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_s64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_s8
#define INSTR_CREATE_vqrshl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_u16
#define INSTR_CREATE_vqrshl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_u32
#define INSTR_CREATE_vqrshl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_u64
#define INSTR_CREATE_vqrshl_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_u64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshl_u8
#define INSTR_CREATE_vqrshl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqrshl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_s16
#define INSTR_CREATE_vqrshrn_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_s32
#define INSTR_CREATE_vqrshrn_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_s64
#define INSTR_CREATE_vqrshrn_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_u16
#define INSTR_CREATE_vqrshrn_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_u32
#define INSTR_CREATE_vqrshrn_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrn_u64
#define INSTR_CREATE_vqrshrn_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrn_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrun_s16
#define INSTR_CREATE_vqrshrun_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrun_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrun_s32
#define INSTR_CREATE_vqrshrun_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrun_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqrshrun_s64
#define INSTR_CREATE_vqrshrun_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqrshrun_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_s16
#define INSTR_CREATE_vqshl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_s16, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_s32
#define INSTR_CREATE_vqshl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_s32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_s64
#define INSTR_CREATE_vqshl_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_s64, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_s8
#define INSTR_CREATE_vqshl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_s8, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_u16
#define INSTR_CREATE_vqshl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_u16, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_u32
#define INSTR_CREATE_vqshl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_u32, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_u64
#define INSTR_CREATE_vqshl_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_u64, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshl_u8
#define INSTR_CREATE_vqshl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm_or_imm | |||
) | instr_create_1dst_2src((dc), OP_vqshl_u8, (Vd), (Vn), (Vm_or_imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshlu_s16
#define INSTR_CREATE_vqshlu_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshlu_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshlu_s32
#define INSTR_CREATE_vqshlu_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshlu_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshlu_s64
#define INSTR_CREATE_vqshlu_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshlu_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshlu_s8
#define INSTR_CREATE_vqshlu_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshlu_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_s16
#define INSTR_CREATE_vqshrn_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_s32
#define INSTR_CREATE_vqshrn_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_s64
#define INSTR_CREATE_vqshrn_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_u16
#define INSTR_CREATE_vqshrn_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_u32
#define INSTR_CREATE_vqshrn_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrn_u64
#define INSTR_CREATE_vqshrn_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrn_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrun_s16
#define INSTR_CREATE_vqshrun_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrun_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrun_s32
#define INSTR_CREATE_vqshrun_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrun_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqshrun_s64
#define INSTR_CREATE_vqshrun_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vqshrun_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_s16
#define INSTR_CREATE_vqsub_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_s32
#define INSTR_CREATE_vqsub_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_s64
#define INSTR_CREATE_vqsub_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_s64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_s8
#define INSTR_CREATE_vqsub_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_u16
#define INSTR_CREATE_vqsub_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_u32
#define INSTR_CREATE_vqsub_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_u64
#define INSTR_CREATE_vqsub_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_u64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vqsub_u8
#define INSTR_CREATE_vqsub_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vqsub_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vraddhn_i16
#define INSTR_CREATE_vraddhn_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vraddhn_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vraddhn_i32
#define INSTR_CREATE_vraddhn_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vraddhn_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vraddhn_i64
#define INSTR_CREATE_vraddhn_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vraddhn_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrecpe_f32
#define INSTR_CREATE_vrecpe_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrecpe_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrecpe_u32
#define INSTR_CREATE_vrecpe_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrecpe_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrecps_f32
#define INSTR_CREATE_vrecps_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrecps_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev16_16
#define INSTR_CREATE_vrev16_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev16_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev16_8
#define INSTR_CREATE_vrev16_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev16_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev32_16
#define INSTR_CREATE_vrev32_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev32_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev32_32
#define INSTR_CREATE_vrev32_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev32_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev32_8
#define INSTR_CREATE_vrev32_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev32_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev64_16
#define INSTR_CREATE_vrev64_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev64_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev64_32
#define INSTR_CREATE_vrev64_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev64_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrev64_8
#define INSTR_CREATE_vrev64_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrev64_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_s16
#define INSTR_CREATE_vrhadd_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_s32
#define INSTR_CREATE_vrhadd_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_s8
#define INSTR_CREATE_vrhadd_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_u16
#define INSTR_CREATE_vrhadd_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_u32
#define INSTR_CREATE_vrhadd_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrhadd_u8
#define INSTR_CREATE_vrhadd_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrhadd_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrinta_f32_f32
#define INSTR_CREATE_vrinta_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrinta_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrinta_f64_f64
#define INSTR_CREATE_vrinta_f64_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrinta_f64_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintm_f32_f32
#define INSTR_CREATE_vrintm_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintm_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintm_f64_f64
#define INSTR_CREATE_vrintm_f64_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintm_f64_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintn_f32_f32
#define INSTR_CREATE_vrintn_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintn_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintn_f64_f64
#define INSTR_CREATE_vrintn_f64_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintn_f64_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintp_f32_f32
#define INSTR_CREATE_vrintp_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintp_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintp_f64_f64
#define INSTR_CREATE_vrintp_f64_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintp_f64_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintr_f32
#define INSTR_CREATE_vrintr_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintr_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintr_f64
#define INSTR_CREATE_vrintr_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintr_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintx_f32
#define INSTR_CREATE_vrintx_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintx_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintx_f32_f32
#define INSTR_CREATE_vrintx_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintx_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintx_f64
#define INSTR_CREATE_vrintx_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintx_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintz_f32
#define INSTR_CREATE_vrintz_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintz_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintz_f32_f32
#define INSTR_CREATE_vrintz_f32_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintz_f32_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrintz_f64
#define INSTR_CREATE_vrintz_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrintz_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_s16
#define INSTR_CREATE_vrshl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_s32
#define INSTR_CREATE_vrshl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_s64
#define INSTR_CREATE_vrshl_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_s64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_s8
#define INSTR_CREATE_vrshl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_u16
#define INSTR_CREATE_vrshl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_u32
#define INSTR_CREATE_vrshl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_u64
#define INSTR_CREATE_vrshl_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_u64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshl_u8
#define INSTR_CREATE_vrshl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrshl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_s16
#define INSTR_CREATE_vrshr_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_s32
#define INSTR_CREATE_vrshr_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_s64
#define INSTR_CREATE_vrshr_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_s8
#define INSTR_CREATE_vrshr_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_u16
#define INSTR_CREATE_vrshr_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_u32
#define INSTR_CREATE_vrshr_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_u64
#define INSTR_CREATE_vrshr_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshr_u8
#define INSTR_CREATE_vrshr_u8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshr_u8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshrn_i16
#define INSTR_CREATE_vrshrn_i16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshrn_i16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshrn_i32
#define INSTR_CREATE_vrshrn_i32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshrn_i32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrshrn_i64
#define INSTR_CREATE_vrshrn_i64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrshrn_i64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsqrte_f32
#define INSTR_CREATE_vrsqrte_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrsqrte_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsqrte_u32
#define INSTR_CREATE_vrsqrte_u32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vrsqrte_u32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsqrts_f32
#define INSTR_CREATE_vrsqrts_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrsqrts_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_s16
#define INSTR_CREATE_vrsra_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_s32
#define INSTR_CREATE_vrsra_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_s64
#define INSTR_CREATE_vrsra_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_s8
#define INSTR_CREATE_vrsra_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_u16
#define INSTR_CREATE_vrsra_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_u32
#define INSTR_CREATE_vrsra_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_u64
#define INSTR_CREATE_vrsra_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsra_u8
#define INSTR_CREATE_vrsra_u8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vrsra_u8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsubhn_i16
#define INSTR_CREATE_vrsubhn_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrsubhn_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsubhn_i32
#define INSTR_CREATE_vrsubhn_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrsubhn_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vrsubhn_i64
#define INSTR_CREATE_vrsubhn_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vrsubhn_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_eq_f32
#define INSTR_CREATE_vsel_eq_f32 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_eq_f32, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_eq_f64
#define INSTR_CREATE_vsel_eq_f64 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_eq_f64, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_ge_f32
#define INSTR_CREATE_vsel_ge_f32 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_ge_f32, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_ge_f64
#define INSTR_CREATE_vsel_ge_f64 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_ge_f64, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_gt_f32
#define INSTR_CREATE_vsel_gt_f32 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_gt_f32, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_gt_f64
#define INSTR_CREATE_vsel_gt_f64 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_gt_f64, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_vs_f32
#define INSTR_CREATE_vsel_vs_f32 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_vs_f32, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsel_vs_f64
#define INSTR_CREATE_vsel_vs_f64 | ( | dc, | |
Vd, | |||
imm, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_3src((dc), OP_vsel_vs_f64, (Vd), (imm), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_i16
#define INSTR_CREATE_vshl_i16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshl_i16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_i32
#define INSTR_CREATE_vshl_i32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshl_i32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_i64
#define INSTR_CREATE_vshl_i64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshl_i64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_i8
#define INSTR_CREATE_vshl_i8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshl_i8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_s16
#define INSTR_CREATE_vshl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_s32
#define INSTR_CREATE_vshl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_s64
#define INSTR_CREATE_vshl_s64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_s64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_s8
#define INSTR_CREATE_vshl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_u16
#define INSTR_CREATE_vshl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_u32
#define INSTR_CREATE_vshl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_u64
#define INSTR_CREATE_vshl_u64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_u64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshl_u8
#define INSTR_CREATE_vshl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vshl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_i16
#define INSTR_CREATE_vshll_i16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_i16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_i32
#define INSTR_CREATE_vshll_i32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_i32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_i8
#define INSTR_CREATE_vshll_i8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_i8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_s16
#define INSTR_CREATE_vshll_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_s32
#define INSTR_CREATE_vshll_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_s8
#define INSTR_CREATE_vshll_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_u16
#define INSTR_CREATE_vshll_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_u32
#define INSTR_CREATE_vshll_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshll_u8
#define INSTR_CREATE_vshll_u8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshll_u8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_s16
#define INSTR_CREATE_vshr_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_s32
#define INSTR_CREATE_vshr_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_s64
#define INSTR_CREATE_vshr_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_s8
#define INSTR_CREATE_vshr_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_u16
#define INSTR_CREATE_vshr_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_u32
#define INSTR_CREATE_vshr_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_u64
#define INSTR_CREATE_vshr_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshr_u8
#define INSTR_CREATE_vshr_u8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshr_u8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshrn_i16
#define INSTR_CREATE_vshrn_i16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshrn_i16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshrn_i32
#define INSTR_CREATE_vshrn_i32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshrn_i32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vshrn_i64
#define INSTR_CREATE_vshrn_i64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vshrn_i64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsli_16
#define INSTR_CREATE_vsli_16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsli_16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsli_32
#define INSTR_CREATE_vsli_32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsli_32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsli_64
#define INSTR_CREATE_vsli_64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsli_64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsli_8
#define INSTR_CREATE_vsli_8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsli_8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsqrt_f32
#define INSTR_CREATE_vsqrt_f32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vsqrt_f32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsqrt_f64
#define INSTR_CREATE_vsqrt_f64 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vsqrt_f64, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_s16
#define INSTR_CREATE_vsra_s16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_s16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_s32
#define INSTR_CREATE_vsra_s32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_s32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_s64
#define INSTR_CREATE_vsra_s64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_s64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_s8
#define INSTR_CREATE_vsra_s8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_s8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_u16
#define INSTR_CREATE_vsra_u16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_u16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_u32
#define INSTR_CREATE_vsra_u32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_u32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_u64
#define INSTR_CREATE_vsra_u64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_u64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsra_u8
#define INSTR_CREATE_vsra_u8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsra_u8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsri_16
#define INSTR_CREATE_vsri_16 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsri_16, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsri_32
#define INSTR_CREATE_vsri_32 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsri_32, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsri_64
#define INSTR_CREATE_vsri_64 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsri_64, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsri_8
#define INSTR_CREATE_vsri_8 | ( | dc, | |
Vd, | |||
Vm, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vsri_8, (Vd), (Vm), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_16
#define INSTR_CREATE_vst1_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_16_wbimm
#define INSTR_CREATE_vst1_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_16_wbreg
#define INSTR_CREATE_vst1_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_32
#define INSTR_CREATE_vst1_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_32_wbimm
#define INSTR_CREATE_vst1_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_32_wbreg
#define INSTR_CREATE_vst1_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_64
#define INSTR_CREATE_vst1_64 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_64_wbimm
#define INSTR_CREATE_vst1_64_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_64_wbreg
#define INSTR_CREATE_vst1_64_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_8
#define INSTR_CREATE_vst1_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_8_wbimm
#define INSTR_CREATE_vst1_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_8_wbreg
#define INSTR_CREATE_vst1_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst1_lane_16
#define INSTR_CREATE_vst1_lane_16 | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_vst1_lane_16, (mem), (Vt), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_16_wbimm
#define INSTR_CREATE_vst1_lane_16_wbimm | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_16_wbreg
#define INSTR_CREATE_vst1_lane_16_wbreg | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_32
#define INSTR_CREATE_vst1_lane_32 | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2 | |||
) | instr_create_1dst_3src((dc), OP_vst1_lane_32, (mem), (Vt), (imm), (imm2)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_32_wbimm
#define INSTR_CREATE_vst1_lane_32_wbimm | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2 | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_32_wbreg
#define INSTR_CREATE_vst1_lane_32_wbreg | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
imm2, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_8
#define INSTR_CREATE_vst1_lane_8 | ( | dc, | |
mem, | |||
Vt, | |||
imm | |||
) | instr_create_1dst_2src((dc), OP_vst1_lane_8, (mem), (Vt), (imm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_8_wbimm
#define INSTR_CREATE_vst1_lane_8_wbimm | ( | dc, | |
mem, | |||
Vt, | |||
imm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst1_lane_8_wbreg
#define INSTR_CREATE_vst1_lane_8_wbreg | ( | dc, | |
mem, | |||
Vt, | |||
imm, | |||
Rm | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vst2_16
#define INSTR_CREATE_vst2_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_16_wbimm
#define INSTR_CREATE_vst2_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_16_wbreg
#define INSTR_CREATE_vst2_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_32
#define INSTR_CREATE_vst2_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_32_wbimm
#define INSTR_CREATE_vst2_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_32_wbreg
#define INSTR_CREATE_vst2_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_8
#define INSTR_CREATE_vst2_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_8_wbimm
#define INSTR_CREATE_vst2_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_8_wbreg
#define INSTR_CREATE_vst2_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_16
#define INSTR_CREATE_vst2_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_16_wbimm
#define INSTR_CREATE_vst2_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_16_wbreg
#define INSTR_CREATE_vst2_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_32
#define INSTR_CREATE_vst2_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_32_wbimm
#define INSTR_CREATE_vst2_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_32_wbreg
#define INSTR_CREATE_vst2_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_8
#define INSTR_CREATE_vst2_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_8_wbimm
#define INSTR_CREATE_vst2_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst2_lane_8_wbreg
#define INSTR_CREATE_vst2_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_16
#define INSTR_CREATE_vst3_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_16_wbimm
#define INSTR_CREATE_vst3_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_16_wbreg
#define INSTR_CREATE_vst3_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_32
#define INSTR_CREATE_vst3_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_32_wbimm
#define INSTR_CREATE_vst3_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_32_wbreg
#define INSTR_CREATE_vst3_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_8
#define INSTR_CREATE_vst3_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_8_wbimm
#define INSTR_CREATE_vst3_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_8_wbreg
#define INSTR_CREATE_vst3_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_16
#define INSTR_CREATE_vst3_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_16_wbimm
#define INSTR_CREATE_vst3_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_16_wbreg
#define INSTR_CREATE_vst3_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_32
#define INSTR_CREATE_vst3_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_32_wbimm
#define INSTR_CREATE_vst3_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_32_wbreg
#define INSTR_CREATE_vst3_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_8
#define INSTR_CREATE_vst3_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_8_wbimm
#define INSTR_CREATE_vst3_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst3_lane_8_wbreg
#define INSTR_CREATE_vst3_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_16
#define INSTR_CREATE_vst4_16 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_16_wbimm
#define INSTR_CREATE_vst4_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_16_wbreg
#define INSTR_CREATE_vst4_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_32
#define INSTR_CREATE_vst4_32 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_32_wbimm
#define INSTR_CREATE_vst4_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_32_wbreg
#define INSTR_CREATE_vst4_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_8
#define INSTR_CREATE_vst4_8 | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_8_wbimm
#define INSTR_CREATE_vst4_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_8_wbreg
#define INSTR_CREATE_vst4_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_16
#define INSTR_CREATE_vst4_lane_16 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_16_wbimm
#define INSTR_CREATE_vst4_lane_16_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_16_wbreg
#define INSTR_CREATE_vst4_lane_16_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_32
#define INSTR_CREATE_vst4_lane_32 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_32_wbimm
#define INSTR_CREATE_vst4_lane_32_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_32_wbreg
#define INSTR_CREATE_vst4_lane_32_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_8
#define INSTR_CREATE_vst4_lane_8 | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_8_wbimm
#define INSTR_CREATE_vst4_lane_8_wbimm | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vst4_lane_8_wbreg
#define INSTR_CREATE_vst4_lane_8_wbreg | ( | dc, | |
mem, | |||
imm, | |||
imm2, | |||
Rm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. mem The memory opnd_t operand. imm The integer constant opnd_t operand. imm2 The second integer constant opnd_t operand. Rm The source register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vstm
#define INSTR_CREATE_vstm | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) | instr_create_Ndst_Msrc_varsrc((dc), OP_vstm, 1, 0, list_len, 0, (mem), __VA_ARGS__) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vstm_wb
#define INSTR_CREATE_vstm_wb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vstmdb
#define INSTR_CREATE_vstmdb | ( | dc, | |
mem, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vstr
#define INSTR_CREATE_vstr | ( | dc, | |
mem, | |||
Vt | |||
) | instr_create_1dst_1src((dc), OP_vstr, (mem), (Vt)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_f32
#define INSTR_CREATE_vsub_f32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_f32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_f64
#define INSTR_CREATE_vsub_f64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_f64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_i16
#define INSTR_CREATE_vsub_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_i32
#define INSTR_CREATE_vsub_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_i64
#define INSTR_CREATE_vsub_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsub_i8
#define INSTR_CREATE_vsub_i8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsub_i8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubhn_i16
#define INSTR_CREATE_vsubhn_i16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubhn_i16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubhn_i32
#define INSTR_CREATE_vsubhn_i32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubhn_i32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubhn_i64
#define INSTR_CREATE_vsubhn_i64 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubhn_i64, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_s16
#define INSTR_CREATE_vsubl_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_s32
#define INSTR_CREATE_vsubl_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_s8
#define INSTR_CREATE_vsubl_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_u16
#define INSTR_CREATE_vsubl_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_u32
#define INSTR_CREATE_vsubl_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubl_u8
#define INSTR_CREATE_vsubl_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubl_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_s16
#define INSTR_CREATE_vsubw_s16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_s16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_s32
#define INSTR_CREATE_vsubw_s32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_s32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_s8
#define INSTR_CREATE_vsubw_s8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_s8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_u16
#define INSTR_CREATE_vsubw_u16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_u16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_u32
#define INSTR_CREATE_vsubw_u32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_u32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vsubw_u8
#define INSTR_CREATE_vsubw_u8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vsubw_u8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vswp
#define INSTR_CREATE_vswp | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vswp, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtbl_8
#define INSTR_CREATE_vtbl_8 | ( | dc, | |
Vd, | |||
Vm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Vd The destination SIMD register opnd_t operand. Vm The source SIMD register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vtbx_8
#define INSTR_CREATE_vtbx_8 | ( | dc, | |
Vd, | |||
Vm, | |||
list_len, | |||
... | |||
) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. Vd The destination SIMD register opnd_t operand. Vm The source SIMD register opnd_t operand. list_len The number of registers in the register list. ... The register list as separate opnd_t arguments. The registers in the list must be in increasing order.
◆ INSTR_CREATE_vtrn_16
#define INSTR_CREATE_vtrn_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vtrn_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtrn_32
#define INSTR_CREATE_vtrn_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vtrn_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtrn_8
#define INSTR_CREATE_vtrn_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vtrn_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtst_16
#define INSTR_CREATE_vtst_16 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vtst_16, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtst_32
#define INSTR_CREATE_vtst_32 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vtst_32, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vtst_8
#define INSTR_CREATE_vtst_8 | ( | dc, | |
Vd, | |||
Vn, | |||
Vm | |||
) | instr_create_1dst_2src((dc), OP_vtst_8, (Vd), (Vn), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vuzp_16
#define INSTR_CREATE_vuzp_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vuzp_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vuzp_32
#define INSTR_CREATE_vuzp_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vuzp_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vuzp_8
#define INSTR_CREATE_vuzp_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vuzp_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vzip_16
#define INSTR_CREATE_vzip_16 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vzip_16, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vzip_32
#define INSTR_CREATE_vzip_32 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vzip_32, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_vzip_8
#define INSTR_CREATE_vzip_8 | ( | dc, | |
Vd, | |||
Vm | |||
) | instr_create_1dst_1src((dc), OP_vzip_8, (Vd), (Vm)) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
◆ INSTR_CREATE_wfe
#define INSTR_CREATE_wfe | ( | dc | ) | instr_create_0dst_0src((dc), OP_wfe) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_wfi
#define INSTR_CREATE_wfi | ( | dc | ) | instr_create_0dst_0src((dc), OP_wfi) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ INSTR_CREATE_yield
#define INSTR_CREATE_yield | ( | dc | ) | instr_create_0dst_0src((dc), OP_yield) |
This INSTR_CREATE_xxx macro creates an instr_t with opcode OP_xxx and the given explicit operands, automatically supplying any implicit operands. The operands should be listed with destinations first, followed by sources. The ordering within these two groups should follow the conventional assembly ordering.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t.
◆ OPND_CREATE_ABSMEM
#define OPND_CREATE_ABSMEM | ( | addr, | |
size | |||
) | opnd_create_rel_addr(addr, size) |
Create an absolute address operand encoded as pc-relative. Encoding will fail if addr is out of the maximum signed displacement reach for the architecture and ISA mode.
◆ OPND_CREATE_INT
#define OPND_CREATE_INT | ( | val | ) | OPND_CREATE_INTPTR(val) |
Create an immediate integer operand. For ARM, the size of an immediate is ignored when encoding, so there is no need to specify the final size.
◆ OPND_CREATE_INT_MSR_G
#define OPND_CREATE_INT_MSR_G | ( | ) | opnd_create_immed_int(EFLAGS_MSR_G, OPSZ_4b) |
The immediate opnd_t for use with OP_msr to write the apsr_g status flags.
◆ OPND_CREATE_INT_MSR_NZCVQ
#define OPND_CREATE_INT_MSR_NZCVQ | ( | ) | opnd_create_immed_int(EFLAGS_MSR_NZCVQ, OPSZ_4b) |
The immediate opnd_t for use with OP_msr to write the nzcvq status flags.
◆ OPND_CREATE_INT_MSR_NZCVQG
#define OPND_CREATE_INT_MSR_NZCVQG | ( | ) | opnd_create_immed_int(EFLAGS_MSR_NZCVQG, OPSZ_4b) |
The immediate opnd_t for use with OP_msr to write the apsr_nzcvqg status flags.
◆ OPND_CREATE_MEMLIST
#define OPND_CREATE_MEMLIST | ( | base | ) | opnd_create_base_disp(base, DR_REG_NULL, 0, 0, OPSZ_VAR_REGLIST) |
A memory opnd_t that auto-sizes at encode time to match a register list.
◆ OPND_CREATE_NEG_REG
#define OPND_CREATE_NEG_REG | ( | reg | ) | opnd_create_reg_ex(reg, 0, DR_OPND_NEGATED) |
Create a negated register operand.
◆ XINST_CREATE_add
#define XINST_CREATE_add | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_add((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for an addition instruction that does not affect the status flags.
◆ XINST_CREATE_add_2src
#define XINST_CREATE_add_2src | ( | dc, | |
d, | |||
s1, | |||
s2 | |||
) | INSTR_CREATE_add((dc), (d), (s1), (s2)) |
This platform-independent macro creates an instr_t for an addition instruction that does not affect the status flags and takes two sources plus a destination.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. d The opnd_t explicit destination operand for the instruction. s1 The opnd_t explicit first source operand for the instruction. This must be a register. s2 The opnd_t explicit source operand for the instruction. This can be either a register or a 32-bit immediate integer on x86.
◆ XINST_CREATE_add_s
#define XINST_CREATE_add_s | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_adds((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for an addition instruction that does affect the status flags.
◆ XINST_CREATE_add_sll
#define XINST_CREATE_add_sll | ( | dc, | |
d, | |||
s1, | |||
s2_toshift, | |||
shift_amount | |||
) |
This platform-independent macro creates an instr_t for an addition instruction that does not affect the status flags and takes two register sources plus a destination, with one source being shifted logically left by an immediate amount that is limited to either 0, 1, 2, or 3.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. d The opnd_t explicit destination operand for the instruction. s1 The opnd_t explicit first source operand for the instruction. This must be a register. s2_toshift The opnd_t explicit source operand for the instruction. This must be a register. shift_amount An integer value that must be either 0, 1, 2, or 3.
◆ XINST_CREATE_and_s
#define XINST_CREATE_and_s | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_ands((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for a bitwise and instruction that does affect the status flags.
◆ XINST_CREATE_call
#define XINST_CREATE_call | ( | dc, | |
t | |||
) | INSTR_CREATE_bl((dc), (t)) |
This platform-independent macro creates an instr_t for an unconditional branch instruction.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. t The opnd_t target operand for the instruction, which can be either a pc (opnd_create_pc)()) or an instr_t (opnd_create_instr()). Be sure to ensure that the limited reach of this short branch will reach the target (a pc operand is not suitable for most uses unless you know precisely where this instruction will be encoded).
◆ XINST_CREATE_call_reg
#define XINST_CREATE_call_reg | ( | dc, | |
r | |||
) | INSTR_CREATE_blx_ind(dc, r) |
◆ XINST_CREATE_cmp
#define XINST_CREATE_cmp | ( | dc, | |
s1, | |||
s2 | |||
) | INSTR_CREATE_cmp((dc), (s1), (s2)) |
◆ XINST_CREATE_debug_instr
#define XINST_CREATE_debug_instr | ( | dc | ) | INSTR_CREATE_bkpt((dc), OPND_CREATE_INT8(1)) |
◆ XINST_CREATE_interrupt
#define XINST_CREATE_interrupt | ( | dc, | |
i | |||
) | INSTR_CREATE_svc(dc, (i)) |
◆ XINST_CREATE_jump
#define XINST_CREATE_jump | ( | dc, | |
t | |||
) | INSTR_CREATE_b((dc), (t)) |
This platform-independent macro creates an instr_t for an unconditional branch instruction.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. t The opnd_t target operand for the instruction, which can be either a pc (opnd_create_pc)()) or an instr_t (opnd_create_instr()). Be sure to ensure that the limited reach of this short branch will reach the target (a pc operand is not suitable for most uses unless you know precisely where this instruction will be encoded).
◆ XINST_CREATE_jump_cond
#define XINST_CREATE_jump_cond | ( | dc, | |
pred, | |||
t | |||
) | (INSTR_PRED(INSTR_CREATE_b((dc), (t)), (pred))) |
This platform-independent macro creates an instr_t for a conditional branch instruction that branches if the previously-set condition codes indicate the condition indicated by pred
.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. pred The dr_pred_type_t condition to match. t The opnd_t target operand for the instruction, which can be either a pc (opnd_create_pc)()) or an instr_t (opnd_create_instr()). Be sure to ensure that the limited reach of this short branch will reach the target (a pc operand is not suitable for most uses unless you know precisely where this instruction will be encoded).
◆ XINST_CREATE_jump_mem
#define XINST_CREATE_jump_mem | ( | dc, | |
m | |||
) | INSTR_CREATE_ldr((dc), opnd_create_reg(DR_REG_PC), (m)) |
◆ XINST_CREATE_jump_reg
#define XINST_CREATE_jump_reg | ( | dc, | |
r | |||
) | INSTR_CREATE_bx((dc), (r)) |
◆ XINST_CREATE_jump_short
#define XINST_CREATE_jump_short | ( | dc, | |
t | |||
) |
This platform-independent macro creates an instr_t for an unconditional branch instruction with the smallest available reach.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. t The opnd_t target operand for the instruction, which can be either a pc (opnd_create_pc)()) or an instr_t (opnd_create_instr()). Be sure to ensure that the limited reach of this short branch will reach the target (a pc operand is not suitable for most uses unless you know precisely where this instruction will be encoded).
◆ XINST_CREATE_load
#define XINST_CREATE_load | ( | dc, | |
r, | |||
m | |||
) | INSTR_CREATE_ldr((dc), (r), (m)) |
◆ XINST_CREATE_load_1byte
#define XINST_CREATE_load_1byte | ( | dc, | |
r, | |||
m | |||
) | INSTR_CREATE_ldrb((dc), (r), (m)) |
◆ XINST_CREATE_load_1byte_zext4
#define XINST_CREATE_load_1byte_zext4 | ( | dc, | |
r, | |||
m | |||
) | INSTR_CREATE_ldrb((dc), (r), (m)) |
◆ XINST_CREATE_load_2bytes
#define XINST_CREATE_load_2bytes | ( | dc, | |
r, | |||
m | |||
) | INSTR_CREATE_ldrh((dc), (r), (m)) |
◆ XINST_CREATE_load_int
#define XINST_CREATE_load_int | ( | dc, | |
r, | |||
i | |||
) |
This platform-independent macro creates an instr_t for an immediate integer load instruction.
- Parameters
-
dc The void * dcontext used to allocate memory for the instr_t. r The destination register opnd. i The source immediate integer opnd.
◆ XINST_CREATE_load_pair
#define XINST_CREATE_load_pair | ( | dc, | |
r1, | |||
r2, | |||
m | |||
) | INSTR_CREATE_ldrd((dc), (r1), (r2), (m)) |
◆ XINST_CREATE_load_simd
#define XINST_CREATE_load_simd | ( | dc, | |
r, | |||
m | |||
) | INSTR_CREATE_vldr((dc), (r), (m)) |
◆ XINST_CREATE_move
#define XINST_CREATE_move | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_mov((dc), (d), (s)) |
◆ XINST_CREATE_nop
#define XINST_CREATE_nop | ( | dc | ) | INSTR_CREATE_nop(dc) |
◆ XINST_CREATE_return
#define XINST_CREATE_return | ( | dc | ) | INSTR_CREATE_pop(dc, opnd_create_reg(DR_REG_PC)) |
◆ XINST_CREATE_slr_s
#define XINST_CREATE_slr_s | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_lsrs((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for a logical right shift instruction that does affect the status flags.
◆ XINST_CREATE_store
#define XINST_CREATE_store | ( | dc, | |
m, | |||
r | |||
) | INSTR_CREATE_str((dc), (m), (r)) |
◆ XINST_CREATE_store_1byte
#define XINST_CREATE_store_1byte | ( | dc, | |
m, | |||
r | |||
) | INSTR_CREATE_strb((dc), (m), (r)) |
◆ XINST_CREATE_store_2bytes
#define XINST_CREATE_store_2bytes | ( | dc, | |
m, | |||
r | |||
) | INSTR_CREATE_strh((dc), (m), (r)) |
◆ XINST_CREATE_store_pair
#define XINST_CREATE_store_pair | ( | dc, | |
m, | |||
r1, | |||
r2 | |||
) | INSTR_CREATE_strd((dc), (m), (r1), (r2)) |
◆ XINST_CREATE_store_simd
#define XINST_CREATE_store_simd | ( | dc, | |
m, | |||
r | |||
) | INSTR_CREATE_vstr((dc), (m), (r)) |
◆ XINST_CREATE_sub
#define XINST_CREATE_sub | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_sub((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for a subtraction instruction that does not affect the status flags.
◆ XINST_CREATE_sub_s
#define XINST_CREATE_sub_s | ( | dc, | |
d, | |||
s | |||
) | INSTR_CREATE_subs((dc), (d), (d), (s)) |
This platform-independent macro creates an instr_t for a subtraction instruction that does affect the status flags.
Enumeration Type Documentation
◆ anonymous enum
anonymous enum |
Immediate values for INSTR_CREATE_dmb().