Searched refs:try_alias (Results 1 – 1 of 1) sorted by relevance
/third_party/skia/src/core/ |
D | SkVM.cpp | 3552 auto try_alias = [&](Val v) -> bool { in jit() local 3565 if (hint1 != NA && try_alias(hint1)) { return r(id); } in jit() 3566 if (hint2 != NA && try_alias(hint2)) { return r(id); } in jit() 3854 if (try_alias(x)) { a->vfmadd132ps(dst(x), r(z), any(y)); } else in jit() 3855 if (try_alias(y)) { a->vfmadd213ps(dst(y), r(x), any(z)); } else in jit() 3856 if (try_alias(z)) { a->vfmadd231ps(dst(z), r(x), any(y)); } else in jit() 3862 if (try_alias(x)) { a->vfmsub132ps(dst(x), r(z), any(y)); } else in jit() 3863 if (try_alias(y)) { a->vfmsub213ps(dst(y), r(x), any(z)); } else in jit() 3864 if (try_alias(z)) { a->vfmsub231ps(dst(z), r(x), any(y)); } else in jit() 3870 if (try_alias(x)) { a->vfnmadd132ps(dst(x), r(z), any(y)); } else in jit() [all …]
|