Lines Matching defs:assm
100 Assembler* assm;
110 CpuFeatureScope scope(assm, AVX);
111 (assm->*avx)(dst, dst, arg, args...);
114 CpuFeatureScope scope(assm, *feature);
115 (assm->*no_avx)(dst, arg, args...);
117 (assm->*no_avx)(dst, arg, args...);
129 CpuFeatureScope scope(assm, AVX);
130 (assm->*avx)(dst, arg, args...);
134 CpuFeatureScope scope(assm, *feature);
135 (assm->*no_avx)(dst, args...);
138 (assm->*no_avx)(dst, args...);
149 CpuFeatureScope scope(assm, AVX);
150 (assm->*avx)(dst, arg, args...);
153 CpuFeatureScope scope(assm, *feature);
154 (assm->*no_avx)(dst, arg, args...);
156 (assm->*no_avx)(dst, arg, args...);
495 void PinsrHelper(Assembler* assm, AvxFn<Op> avx, NoAvxFn<Op> noavx,
500 CpuFeatureScope scope(assm, AVX);
501 if (load_pc_offset) *load_pc_offset = assm->pc_offset();
502 (assm->*avx)(dst, src1, src2, imm8);
506 if (dst != src1) assm->movaps(dst, src1);
507 if (load_pc_offset) *load_pc_offset = assm->pc_offset();
510 CpuFeatureScope scope(assm, *feature);
511 (assm->*noavx)(dst, src2, imm8);
513 (assm->*noavx)(dst, src2, imm8);
977 SharedTurboAssembler* assm = this;
978 (assm->*op)(dst, src, ExternalReferenceAsOperand(ext, tmp));