• Home
  • Raw
  • Download

Lines Matching defs:dst

59 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Operand src,  in Load()
84 inline void Store(LiftoffAssembler* assm, Operand dst, LiftoffRegister src, in Store()
239 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance()
250 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance()
260 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto()
264 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer()
307 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad()
313 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load()
742 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot()
765 Operand dst = liftoff::GetStackSlot(dst_offset); in MoveStackValue() local
777 void LiftoffAssembler::Move(Register dst, Register src, ValueType type) { in Move()
787 void LiftoffAssembler::Move(DoubleRegister dst, DoubleRegister src, in Move()
802 Operand dst = liftoff::GetStackSlot(offset); in Spill() local
828 Operand dst = liftoff::GetStackSlot(offset); in Spill() local
895 void LiftoffAssembler::emit_i32_add(Register dst, Register lhs, Register rhs) { in emit_i32_add()
903 void LiftoffAssembler::emit_i32_addi(Register dst, Register lhs, int32_t imm) { in emit_i32_addi()
911 void LiftoffAssembler::emit_i32_sub(Register dst, Register lhs, Register rhs) { in emit_i32_sub()
929 void EmitCommutativeBinOp(LiftoffAssembler* assm, Register dst, Register lhs, in EmitCommutativeBinOp()
941 void EmitCommutativeBinOpImm(LiftoffAssembler* assm, Register dst, Register lhs, in EmitCommutativeBinOpImm()
948 void LiftoffAssembler::emit_i32_mul(Register dst, Register lhs, Register rhs) { in emit_i32_mul()
956 void EmitIntDivOrRem(LiftoffAssembler* assm, Register dst, Register lhs, in EmitIntDivOrRem()
1039 void LiftoffAssembler::emit_i32_divs(Register dst, Register lhs, Register rhs, in emit_i32_divs()
1046 void LiftoffAssembler::emit_i32_divu(Register dst, Register lhs, Register rhs, in emit_i32_divu()
1052 void LiftoffAssembler::emit_i32_rems(Register dst, Register lhs, Register rhs, in emit_i32_rems()
1058 void LiftoffAssembler::emit_i32_remu(Register dst, Register lhs, Register rhs, in emit_i32_remu()
1064 void LiftoffAssembler::emit_i32_and(Register dst, Register lhs, Register rhs) { in emit_i32_and()
1069 void LiftoffAssembler::emit_i32_andi(Register dst, Register lhs, int32_t imm) { in emit_i32_andi()
1074 void LiftoffAssembler::emit_i32_or(Register dst, Register lhs, Register rhs) { in emit_i32_or()
1079 void LiftoffAssembler::emit_i32_ori(Register dst, Register lhs, int32_t imm) { in emit_i32_ori()
1084 void LiftoffAssembler::emit_i32_xor(Register dst, Register lhs, Register rhs) { in emit_i32_xor()
1089 void LiftoffAssembler::emit_i32_xori(Register dst, Register lhs, int32_t imm) { in emit_i32_xori()
1096 inline void EmitShiftOperation(LiftoffAssembler* assm, Register dst, in EmitShiftOperation()
1128 void LiftoffAssembler::emit_i32_shl(Register dst, Register src, in emit_i32_shl()
1134 void LiftoffAssembler::emit_i32_shli(Register dst, Register src, in emit_i32_shli()
1140 void LiftoffAssembler::emit_i32_sar(Register dst, Register src, in emit_i32_sar()
1146 void LiftoffAssembler::emit_i32_sari(Register dst, Register src, in emit_i32_sari()
1152 void LiftoffAssembler::emit_i32_shr(Register dst, Register src, in emit_i32_shr()
1158 void LiftoffAssembler::emit_i32_shri(Register dst, Register src, in emit_i32_shri()
1164 void LiftoffAssembler::emit_i32_clz(Register dst, Register src) { in emit_i32_clz()
1168 void LiftoffAssembler::emit_i32_ctz(Register dst, Register src) { in emit_i32_ctz()
1172 bool LiftoffAssembler::emit_i32_popcnt(Register dst, Register src) { in emit_i32_popcnt()
1179 void LiftoffAssembler::emit_i64_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_add()
1188 void LiftoffAssembler::emit_i64_addi(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_addi()
1197 void LiftoffAssembler::emit_i64_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_sub()
1208 void LiftoffAssembler::emit_i64_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_mul()
1214 bool LiftoffAssembler::emit_i64_divs(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_divs()
1224 bool LiftoffAssembler::emit_i64_divu(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_divu()
1232 bool LiftoffAssembler::emit_i64_rems(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_rems()
1240 bool LiftoffAssembler::emit_i64_remu(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_remu()
1248 void LiftoffAssembler::emit_i64_and(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_and()
1254 void LiftoffAssembler::emit_i64_andi(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_andi()
1260 void LiftoffAssembler::emit_i64_or(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_or()
1266 void LiftoffAssembler::emit_i64_ori(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_ori()
1272 void LiftoffAssembler::emit_i64_xor(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_xor()
1278 void LiftoffAssembler::emit_i64_xori(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64_xori()
1284 void LiftoffAssembler::emit_i64_shl(LiftoffRegister dst, LiftoffRegister src, in emit_i64_shl()
1290 void LiftoffAssembler::emit_i64_shli(LiftoffRegister dst, LiftoffRegister src, in emit_i64_shli()
1296 void LiftoffAssembler::emit_i64_sar(LiftoffRegister dst, LiftoffRegister src, in emit_i64_sar()
1302 void LiftoffAssembler::emit_i64_sari(LiftoffRegister dst, LiftoffRegister src, in emit_i64_sari()
1308 void LiftoffAssembler::emit_i64_shr(LiftoffRegister dst, LiftoffRegister src, in emit_i64_shr()
1314 void LiftoffAssembler::emit_i64_shri(LiftoffRegister dst, LiftoffRegister src, in emit_i64_shri()
1320 void LiftoffAssembler::emit_i64_clz(LiftoffRegister dst, LiftoffRegister src) { in emit_i64_clz()
1324 void LiftoffAssembler::emit_i64_ctz(LiftoffRegister dst, LiftoffRegister src) { in emit_i64_ctz()
1328 bool LiftoffAssembler::emit_i64_popcnt(LiftoffRegister dst, in emit_i64_popcnt()
1336 void LiftoffAssembler::emit_u32_to_intptr(Register dst, Register src) { in emit_u32_to_intptr()
1340 void LiftoffAssembler::emit_f32_add(DoubleRegister dst, DoubleRegister lhs, in emit_f32_add()
1353 void LiftoffAssembler::emit_f32_sub(DoubleRegister dst, DoubleRegister lhs, in emit_f32_sub()
1368 void LiftoffAssembler::emit_f32_mul(DoubleRegister dst, DoubleRegister lhs, in emit_f32_mul()
1381 void LiftoffAssembler::emit_f32_div(DoubleRegister dst, DoubleRegister lhs, in emit_f32_div()
1399 inline void EmitFloatMinOrMax(LiftoffAssembler* assm, DoubleRegister dst, in EmitFloatMinOrMax()
1453 void LiftoffAssembler::emit_f32_min(DoubleRegister dst, DoubleRegister lhs, in emit_f32_min()
1459 void LiftoffAssembler::emit_f32_max(DoubleRegister dst, DoubleRegister lhs, in emit_f32_max()
1465 void LiftoffAssembler::emit_f32_copysign(DoubleRegister dst, DoubleRegister lhs, in emit_f32_copysign()
1476 void LiftoffAssembler::emit_f32_abs(DoubleRegister dst, DoubleRegister src) { in emit_f32_abs()
1487 void LiftoffAssembler::emit_f32_neg(DoubleRegister dst, DoubleRegister src) { in emit_f32_neg()
1498 bool LiftoffAssembler::emit_f32_ceil(DoubleRegister dst, DoubleRegister src) { in emit_f32_ceil()
1504 bool LiftoffAssembler::emit_f32_floor(DoubleRegister dst, DoubleRegister src) { in emit_f32_floor()
1510 bool LiftoffAssembler::emit_f32_trunc(DoubleRegister dst, DoubleRegister src) { in emit_f32_trunc()
1516 bool LiftoffAssembler::emit_f32_nearest_int(DoubleRegister dst, in emit_f32_nearest_int()
1523 void LiftoffAssembler::emit_f32_sqrt(DoubleRegister dst, DoubleRegister src) { in emit_f32_sqrt()
1527 void LiftoffAssembler::emit_f64_add(DoubleRegister dst, DoubleRegister lhs, in emit_f64_add()
1540 void LiftoffAssembler::emit_f64_sub(DoubleRegister dst, DoubleRegister lhs, in emit_f64_sub()
1555 void LiftoffAssembler::emit_f64_mul(DoubleRegister dst, DoubleRegister lhs, in emit_f64_mul()
1568 void LiftoffAssembler::emit_f64_div(DoubleRegister dst, DoubleRegister lhs, in emit_f64_div()
1583 void LiftoffAssembler::emit_f64_min(DoubleRegister dst, DoubleRegister lhs, in emit_f64_min()
1589 void LiftoffAssembler::emit_f64_copysign(DoubleRegister dst, DoubleRegister lhs, in emit_f64_copysign()
1603 void LiftoffAssembler::emit_f64_max(DoubleRegister dst, DoubleRegister lhs, in emit_f64_max()
1609 void LiftoffAssembler::emit_f64_abs(DoubleRegister dst, DoubleRegister src) { in emit_f64_abs()
1620 void LiftoffAssembler::emit_f64_neg(DoubleRegister dst, DoubleRegister src) { in emit_f64_neg()
1631 bool LiftoffAssembler::emit_f64_ceil(DoubleRegister dst, DoubleRegister src) { in emit_f64_ceil()
1637 bool LiftoffAssembler::emit_f64_floor(DoubleRegister dst, DoubleRegister src) { in emit_f64_floor()
1643 bool LiftoffAssembler::emit_f64_trunc(DoubleRegister dst, DoubleRegister src) { in emit_f64_trunc()
1649 bool LiftoffAssembler::emit_f64_nearest_int(DoubleRegister dst, in emit_f64_nearest_int()
1656 void LiftoffAssembler::emit_f64_sqrt(DoubleRegister dst, DoubleRegister src) { in emit_f64_sqrt()
1665 inline void ConvertFloatToIntAndBack(LiftoffAssembler* assm, Register dst, in ConvertFloatToIntAndBack()
1700 inline bool EmitTruncateFloatToInt(LiftoffAssembler* assm, Register dst, in EmitTruncateFloatToInt()
1732 inline bool EmitSatTruncateFloatToInt(LiftoffAssembler* assm, Register dst, in EmitSatTruncateFloatToInt()
1809 inline bool EmitSatTruncateFloatToUInt64(LiftoffAssembler* assm, Register dst, in EmitSatTruncateFloatToUInt64()
1852 LiftoffRegister dst, in emit_type_conversion()
1968 void LiftoffAssembler::emit_i32_signextend_i8(Register dst, Register src) { in emit_i32_signextend_i8()
1972 void LiftoffAssembler::emit_i32_signextend_i16(Register dst, Register src) { in emit_i32_signextend_i16()
1976 void LiftoffAssembler::emit_i64_signextend_i8(LiftoffRegister dst, in emit_i64_signextend_i8()
1981 void LiftoffAssembler::emit_i64_signextend_i16(LiftoffRegister dst, in emit_i64_signextend_i16()
1986 void LiftoffAssembler::emit_i64_signextend_i32(LiftoffRegister dst, in emit_i64_signextend_i32()
2017 void LiftoffAssembler::emit_i32_eqz(Register dst, Register src) { in emit_i32_eqz()
2023 void LiftoffAssembler::emit_i32_set_cond(Condition cond, Register dst, in emit_i32_set_cond()
2030 void LiftoffAssembler::emit_i64_eqz(Register dst, LiftoffRegister src) { in emit_i64_eqz()
2036 void LiftoffAssembler::emit_i64_set_cond(Condition cond, Register dst, in emit_i64_set_cond()
2046 void EmitFloatSetCond(LiftoffAssembler* assm, Condition cond, Register dst, in EmitFloatSetCond()
2069 void LiftoffAssembler::emit_f32_set_cond(Condition cond, Register dst, in emit_f32_set_cond()
2076 void LiftoffAssembler::emit_f64_set_cond(Condition cond, Register dst, in emit_f64_set_cond()
2083 bool LiftoffAssembler::emit_select(LiftoffRegister dst, Register condition, in emit_select()
2160 void EmitSimdShiftOp(LiftoffAssembler* assm, LiftoffRegister dst, in EmitSimdShiftOp()
2177 void EmitSimdShiftOpImm(LiftoffAssembler* assm, LiftoffRegister dst, in EmitSimdShiftOpImm()
2191 void EmitI8x16Shr(LiftoffAssembler* assm, LiftoffRegister dst, in EmitI8x16Shr()
2245 inline void EmitAnyTrue(LiftoffAssembler* assm, LiftoffRegister dst, in EmitAnyTrue()
2253 inline void EmitAllTrue(LiftoffAssembler* assm, LiftoffRegister dst, in EmitAllTrue()
2265 void LiftoffAssembler::LoadTransform(LiftoffRegister dst, Register src_addr, in LoadTransform()
2321 void LiftoffAssembler::emit_i8x16_shuffle(LiftoffRegister dst, in emit_i8x16_shuffle()
2359 void LiftoffAssembler::emit_i8x16_swizzle(LiftoffRegister dst, in emit_i8x16_swizzle()
2371 void LiftoffAssembler::emit_i8x16_splat(LiftoffRegister dst, in emit_i8x16_splat()
2378 void LiftoffAssembler::emit_i16x8_splat(LiftoffRegister dst, in emit_i16x8_splat()
2385 void LiftoffAssembler::emit_i32x4_splat(LiftoffRegister dst, in emit_i32x4_splat()
2391 void LiftoffAssembler::emit_i64x2_splat(LiftoffRegister dst, in emit_i64x2_splat()
2397 void LiftoffAssembler::emit_f32x4_splat(LiftoffRegister dst, in emit_f32x4_splat()
2402 void LiftoffAssembler::emit_f64x2_splat(LiftoffRegister dst, in emit_f64x2_splat()
2407 void LiftoffAssembler::emit_i8x16_eq(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_eq()
2413 void LiftoffAssembler::emit_i8x16_ne(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_ne()
2421 void LiftoffAssembler::emit_i8x16_gt_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_gt_s()
2428 void LiftoffAssembler::emit_i8x16_gt_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_gt_u()
2442 void LiftoffAssembler::emit_i8x16_ge_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_ge_s()
2454 void LiftoffAssembler::emit_i8x16_ge_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_ge_u()
2466 void LiftoffAssembler::emit_i16x8_eq(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_eq()
2472 void LiftoffAssembler::emit_i16x8_ne(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_ne()
2480 void LiftoffAssembler::emit_i16x8_gt_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_gt_s()
2487 void LiftoffAssembler::emit_i16x8_gt_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_gt_u()
2501 void LiftoffAssembler::emit_i16x8_ge_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_ge_s()
2513 void LiftoffAssembler::emit_i16x8_ge_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_ge_u()
2525 void LiftoffAssembler::emit_i32x4_eq(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_eq()
2531 void LiftoffAssembler::emit_i32x4_ne(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_ne()
2539 void LiftoffAssembler::emit_i32x4_gt_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_gt_s()
2546 void LiftoffAssembler::emit_i32x4_gt_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_gt_u()
2560 void LiftoffAssembler::emit_i32x4_ge_s(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_ge_s()
2572 void LiftoffAssembler::emit_i32x4_ge_u(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_ge_u()
2584 void LiftoffAssembler::emit_f32x4_eq(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_eq()
2590 void LiftoffAssembler::emit_f32x4_ne(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_ne()
2596 void LiftoffAssembler::emit_f32x4_lt(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_lt()
2603 void LiftoffAssembler::emit_f32x4_le(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_le()
2610 void LiftoffAssembler::emit_f64x2_eq(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_eq()
2616 void LiftoffAssembler::emit_f64x2_ne(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_ne()
2622 void LiftoffAssembler::emit_f64x2_lt(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_lt()
2629 void LiftoffAssembler::emit_f64x2_le(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_le()
2636 void LiftoffAssembler::emit_s128_const(LiftoffRegister dst, in emit_s128_const()
2645 void LiftoffAssembler::emit_s128_not(LiftoffRegister dst, LiftoffRegister src) { in emit_s128_not()
2655 void LiftoffAssembler::emit_s128_and(LiftoffRegister dst, LiftoffRegister lhs, in emit_s128_and()
2661 void LiftoffAssembler::emit_s128_or(LiftoffRegister dst, LiftoffRegister lhs, in emit_s128_or()
2667 void LiftoffAssembler::emit_s128_xor(LiftoffRegister dst, LiftoffRegister lhs, in emit_s128_xor()
2673 void LiftoffAssembler::emit_s128_select(LiftoffRegister dst, in emit_s128_select()
2691 void LiftoffAssembler::emit_i8x16_neg(LiftoffRegister dst, in emit_i8x16_neg()
2702 void LiftoffAssembler::emit_v8x16_anytrue(LiftoffRegister dst, in emit_v8x16_anytrue()
2707 void LiftoffAssembler::emit_v8x16_alltrue(LiftoffRegister dst, in emit_v8x16_alltrue()
2712 void LiftoffAssembler::emit_i8x16_bitmask(LiftoffRegister dst, in emit_i8x16_bitmask()
2717 void LiftoffAssembler::emit_i8x16_shl(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_shl()
2743 void LiftoffAssembler::emit_i8x16_shli(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_shli()
2762 void LiftoffAssembler::emit_i8x16_shr_s(LiftoffRegister dst, in emit_i8x16_shr_s()
2768 void LiftoffAssembler::emit_i8x16_shri_s(LiftoffRegister dst, in emit_i8x16_shri_s()
2778 void LiftoffAssembler::emit_i8x16_shr_u(LiftoffRegister dst, in emit_i8x16_shr_u()
2784 void LiftoffAssembler::emit_i8x16_shri_u(LiftoffRegister dst, in emit_i8x16_shri_u()
2804 void LiftoffAssembler::emit_i8x16_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_add()
2810 void LiftoffAssembler::emit_i8x16_add_sat_s(LiftoffRegister dst, in emit_i8x16_add_sat_s()
2817 void LiftoffAssembler::emit_i8x16_add_sat_u(LiftoffRegister dst, in emit_i8x16_add_sat_u()
2824 void LiftoffAssembler::emit_i8x16_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_sub()
2830 void LiftoffAssembler::emit_i8x16_sub_sat_s(LiftoffRegister dst, in emit_i8x16_sub_sat_s()
2837 void LiftoffAssembler::emit_i8x16_sub_sat_u(LiftoffRegister dst, in emit_i8x16_sub_sat_u()
2845 void LiftoffAssembler::emit_i8x16_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_i8x16_mul()
2907 void LiftoffAssembler::emit_i8x16_min_s(LiftoffRegister dst, in emit_i8x16_min_s()
2914 void LiftoffAssembler::emit_i8x16_min_u(LiftoffRegister dst, in emit_i8x16_min_u()
2921 void LiftoffAssembler::emit_i8x16_max_s(LiftoffRegister dst, in emit_i8x16_max_s()
2928 void LiftoffAssembler::emit_i8x16_max_u(LiftoffRegister dst, in emit_i8x16_max_u()
2935 void LiftoffAssembler::emit_i16x8_neg(LiftoffRegister dst, in emit_i16x8_neg()
2946 void LiftoffAssembler::emit_v16x8_anytrue(LiftoffRegister dst, in emit_v16x8_anytrue()
2951 void LiftoffAssembler::emit_v16x8_alltrue(LiftoffRegister dst, in emit_v16x8_alltrue()
2956 void LiftoffAssembler::emit_i16x8_bitmask(LiftoffRegister dst, in emit_i16x8_bitmask()
2964 void LiftoffAssembler::emit_i16x8_shl(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_shl()
2970 void LiftoffAssembler::emit_i16x8_shli(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_shli()
2976 void LiftoffAssembler::emit_i16x8_shr_s(LiftoffRegister dst, in emit_i16x8_shr_s()
2983 void LiftoffAssembler::emit_i16x8_shri_s(LiftoffRegister dst, in emit_i16x8_shri_s()
2989 void LiftoffAssembler::emit_i16x8_shr_u(LiftoffRegister dst, in emit_i16x8_shr_u()
2996 void LiftoffAssembler::emit_i16x8_shri_u(LiftoffRegister dst, in emit_i16x8_shri_u()
3002 void LiftoffAssembler::emit_i16x8_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_add()
3008 void LiftoffAssembler::emit_i16x8_add_sat_s(LiftoffRegister dst, in emit_i16x8_add_sat_s()
3015 void LiftoffAssembler::emit_i16x8_add_sat_u(LiftoffRegister dst, in emit_i16x8_add_sat_u()
3022 void LiftoffAssembler::emit_i16x8_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_sub()
3028 void LiftoffAssembler::emit_i16x8_sub_sat_s(LiftoffRegister dst, in emit_i16x8_sub_sat_s()
3035 void LiftoffAssembler::emit_i16x8_sub_sat_u(LiftoffRegister dst, in emit_i16x8_sub_sat_u()
3043 void LiftoffAssembler::emit_i16x8_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_i16x8_mul()
3049 void LiftoffAssembler::emit_i16x8_min_s(LiftoffRegister dst, in emit_i16x8_min_s()
3056 void LiftoffAssembler::emit_i16x8_min_u(LiftoffRegister dst, in emit_i16x8_min_u()
3063 void LiftoffAssembler::emit_i16x8_max_s(LiftoffRegister dst, in emit_i16x8_max_s()
3070 void LiftoffAssembler::emit_i16x8_max_u(LiftoffRegister dst, in emit_i16x8_max_u()
3077 void LiftoffAssembler::emit_i32x4_neg(LiftoffRegister dst, in emit_i32x4_neg()
3088 void LiftoffAssembler::emit_v32x4_anytrue(LiftoffRegister dst, in emit_v32x4_anytrue()
3093 void LiftoffAssembler::emit_v32x4_alltrue(LiftoffRegister dst, in emit_v32x4_alltrue()
3098 void LiftoffAssembler::emit_i32x4_bitmask(LiftoffRegister dst, in emit_i32x4_bitmask()
3103 void LiftoffAssembler::emit_i32x4_shl(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_shl()
3109 void LiftoffAssembler::emit_i32x4_shli(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_shli()
3115 void LiftoffAssembler::emit_i32x4_shr_s(LiftoffRegister dst, in emit_i32x4_shr_s()
3122 void LiftoffAssembler::emit_i32x4_shri_s(LiftoffRegister dst, in emit_i32x4_shri_s()
3128 void LiftoffAssembler::emit_i32x4_shr_u(LiftoffRegister dst, in emit_i32x4_shr_u()
3135 void LiftoffAssembler::emit_i32x4_shri_u(LiftoffRegister dst, in emit_i32x4_shri_u()
3141 void LiftoffAssembler::emit_i32x4_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_add()
3147 void LiftoffAssembler::emit_i32x4_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_sub()
3153 void LiftoffAssembler::emit_i32x4_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_i32x4_mul()
3159 void LiftoffAssembler::emit_i32x4_min_s(LiftoffRegister dst, in emit_i32x4_min_s()
3166 void LiftoffAssembler::emit_i32x4_min_u(LiftoffRegister dst, in emit_i32x4_min_u()
3173 void LiftoffAssembler::emit_i32x4_max_s(LiftoffRegister dst, in emit_i32x4_max_s()
3180 void LiftoffAssembler::emit_i32x4_max_u(LiftoffRegister dst, in emit_i32x4_max_u()
3187 void LiftoffAssembler::emit_i32x4_dot_i16x8_s(LiftoffRegister dst, in emit_i32x4_dot_i16x8_s()
3194 void LiftoffAssembler::emit_i64x2_neg(LiftoffRegister dst, in emit_i64x2_neg()
3207 void LiftoffAssembler::emit_i64x2_shl(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64x2_shl()
3213 void LiftoffAssembler::emit_i64x2_shli(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64x2_shli()
3219 void LiftoffAssembler::emit_i64x2_shr_s(LiftoffRegister dst, in emit_i64x2_shr_s()
3226 void LiftoffAssembler::emit_i64x2_shri_s(LiftoffRegister dst, in emit_i64x2_shri_s()
3231 void LiftoffAssembler::emit_i64x2_shr_u(LiftoffRegister dst, in emit_i64x2_shr_u()
3238 void LiftoffAssembler::emit_i64x2_shri_u(LiftoffRegister dst, in emit_i64x2_shri_u()
3244 void LiftoffAssembler::emit_i64x2_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64x2_add()
3250 void LiftoffAssembler::emit_i64x2_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64x2_sub()
3256 void LiftoffAssembler::emit_i64x2_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_i64x2_mul()
3283 void LiftoffAssembler::emit_f32x4_abs(LiftoffRegister dst, in emit_f32x4_abs()
3296 void LiftoffAssembler::emit_f32x4_neg(LiftoffRegister dst, in emit_f32x4_neg()
3309 void LiftoffAssembler::emit_f32x4_sqrt(LiftoffRegister dst, in emit_f32x4_sqrt()
3314 bool LiftoffAssembler::emit_f32x4_ceil(LiftoffRegister dst, in emit_f32x4_ceil()
3321 bool LiftoffAssembler::emit_f32x4_floor(LiftoffRegister dst, in emit_f32x4_floor()
3328 bool LiftoffAssembler::emit_f32x4_trunc(LiftoffRegister dst, in emit_f32x4_trunc()
3335 bool LiftoffAssembler::emit_f32x4_nearest_int(LiftoffRegister dst, in emit_f32x4_nearest_int()
3342 void LiftoffAssembler::emit_f32x4_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_add()
3348 void LiftoffAssembler::emit_f32x4_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_sub()
3354 void LiftoffAssembler::emit_f32x4_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_mul()
3360 void LiftoffAssembler::emit_f32x4_div(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_div()
3366 void LiftoffAssembler::emit_f32x4_min(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_min()
3394 void LiftoffAssembler::emit_f32x4_max(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_max()
3425 void LiftoffAssembler::emit_f32x4_pmin(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_pmin()
3432 void LiftoffAssembler::emit_f32x4_pmax(LiftoffRegister dst, LiftoffRegister lhs, in emit_f32x4_pmax()
3439 void LiftoffAssembler::emit_f64x2_abs(LiftoffRegister dst, in emit_f64x2_abs()
3452 void LiftoffAssembler::emit_f64x2_neg(LiftoffRegister dst, in emit_f64x2_neg()
3465 void LiftoffAssembler::emit_f64x2_sqrt(LiftoffRegister dst, in emit_f64x2_sqrt()
3470 bool LiftoffAssembler::emit_f64x2_ceil(LiftoffRegister dst, in emit_f64x2_ceil()
3477 bool LiftoffAssembler::emit_f64x2_floor(LiftoffRegister dst, in emit_f64x2_floor()
3484 bool LiftoffAssembler::emit_f64x2_trunc(LiftoffRegister dst, in emit_f64x2_trunc()
3491 bool LiftoffAssembler::emit_f64x2_nearest_int(LiftoffRegister dst, in emit_f64x2_nearest_int()
3498 void LiftoffAssembler::emit_f64x2_add(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_add()
3504 void LiftoffAssembler::emit_f64x2_sub(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_sub()
3510 void LiftoffAssembler::emit_f64x2_mul(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_mul()
3516 void LiftoffAssembler::emit_f64x2_div(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_div()
3522 void LiftoffAssembler::emit_f64x2_min(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_min()
3550 void LiftoffAssembler::emit_f64x2_max(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_max()
3581 void LiftoffAssembler::emit_f64x2_pmin(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_pmin()
3588 void LiftoffAssembler::emit_f64x2_pmax(LiftoffRegister dst, LiftoffRegister lhs, in emit_f64x2_pmax()
3595 void LiftoffAssembler::emit_i32x4_sconvert_f32x4(LiftoffRegister dst, in emit_i32x4_sconvert_f32x4()
3619 void LiftoffAssembler::emit_i32x4_uconvert_f32x4(LiftoffRegister dst, in emit_i32x4_uconvert_f32x4()
3655 void LiftoffAssembler::emit_f32x4_sconvert_i32x4(LiftoffRegister dst, in emit_f32x4_sconvert_i32x4()
3660 void LiftoffAssembler::emit_f32x4_uconvert_i32x4(LiftoffRegister dst, in emit_f32x4_uconvert_i32x4()
3678 void LiftoffAssembler::emit_i8x16_sconvert_i16x8(LiftoffRegister dst, in emit_i8x16_sconvert_i16x8()
3686 void LiftoffAssembler::emit_i8x16_uconvert_i16x8(LiftoffRegister dst, in emit_i8x16_uconvert_i16x8()
3694 void LiftoffAssembler::emit_i16x8_sconvert_i32x4(LiftoffRegister dst, in emit_i16x8_sconvert_i32x4()
3702 void LiftoffAssembler::emit_i16x8_uconvert_i32x4(LiftoffRegister dst, in emit_i16x8_uconvert_i32x4()
3710 void LiftoffAssembler::emit_i16x8_sconvert_i8x16_low(LiftoffRegister dst, in emit_i16x8_sconvert_i8x16_low()
3715 void LiftoffAssembler::emit_i16x8_sconvert_i8x16_high(LiftoffRegister dst, in emit_i16x8_sconvert_i8x16_high()
3721 void LiftoffAssembler::emit_i16x8_uconvert_i8x16_low(LiftoffRegister dst, in emit_i16x8_uconvert_i8x16_low()
3726 void LiftoffAssembler::emit_i16x8_uconvert_i8x16_high(LiftoffRegister dst, in emit_i16x8_uconvert_i8x16_high()
3732 void LiftoffAssembler::emit_i32x4_sconvert_i16x8_low(LiftoffRegister dst, in emit_i32x4_sconvert_i16x8_low()
3737 void LiftoffAssembler::emit_i32x4_sconvert_i16x8_high(LiftoffRegister dst, in emit_i32x4_sconvert_i16x8_high()
3743 void LiftoffAssembler::emit_i32x4_uconvert_i16x8_low(LiftoffRegister dst, in emit_i32x4_uconvert_i16x8_low()
3748 void LiftoffAssembler::emit_i32x4_uconvert_i16x8_high(LiftoffRegister dst, in emit_i32x4_uconvert_i16x8_high()
3754 void LiftoffAssembler::emit_s128_and_not(LiftoffRegister dst, in emit_s128_and_not()
3761 void LiftoffAssembler::emit_i8x16_rounding_average_u(LiftoffRegister dst, in emit_i8x16_rounding_average_u()
3768 void LiftoffAssembler::emit_i16x8_rounding_average_u(LiftoffRegister dst, in emit_i16x8_rounding_average_u()
3775 void LiftoffAssembler::emit_i8x16_abs(LiftoffRegister dst, in emit_i8x16_abs()
3780 void LiftoffAssembler::emit_i16x8_abs(LiftoffRegister dst, in emit_i16x8_abs()
3785 void LiftoffAssembler::emit_i32x4_abs(LiftoffRegister dst, in emit_i32x4_abs()
3790 void LiftoffAssembler::emit_i8x16_extract_lane_s(LiftoffRegister dst, in emit_i8x16_extract_lane_s()
3797 void LiftoffAssembler::emit_i8x16_extract_lane_u(LiftoffRegister dst, in emit_i8x16_extract_lane_u()
3803 void LiftoffAssembler::emit_i16x8_extract_lane_s(LiftoffRegister dst, in emit_i16x8_extract_lane_s()
3810 void LiftoffAssembler::emit_i16x8_extract_lane_u(LiftoffRegister dst, in emit_i16x8_extract_lane_u()
3816 void LiftoffAssembler::emit_i32x4_extract_lane(LiftoffRegister dst, in emit_i32x4_extract_lane()
3822 void LiftoffAssembler::emit_i64x2_extract_lane(LiftoffRegister dst, in emit_i64x2_extract_lane()
3828 void LiftoffAssembler::emit_f32x4_extract_lane(LiftoffRegister dst, in emit_f32x4_extract_lane()
3840 void LiftoffAssembler::emit_f64x2_extract_lane(LiftoffRegister dst, in emit_f64x2_extract_lane()
3847 void LiftoffAssembler::emit_i8x16_replace_lane(LiftoffRegister dst, in emit_i8x16_replace_lane()
3861 void LiftoffAssembler::emit_i16x8_replace_lane(LiftoffRegister dst, in emit_i16x8_replace_lane()
3874 void LiftoffAssembler::emit_i32x4_replace_lane(LiftoffRegister dst, in emit_i32x4_replace_lane()
3888 void LiftoffAssembler::emit_i64x2_replace_lane(LiftoffRegister dst, in emit_i64x2_replace_lane()
3902 void LiftoffAssembler::emit_f32x4_replace_lane(LiftoffRegister dst, in emit_f32x4_replace_lane()
3916 void LiftoffAssembler::emit_f64x2_replace_lane(LiftoffRegister dst, in emit_f64x2_replace_lane()