luau/CodeGen
Arseny Kapoulkine 0d1db6a0b0 CodeGen: Optimize vandps for X64 when the source is computed
With the TAG_VECTOR change, we can now confidently distinguish cases when the .w component
contains TVECTOR tag from cases where it doesn't: loads and tag ops produce the tag, whereas
other instructions don't.

We now take advantage of this fact and only apply vandps with a mask when we need to.

It would be possible to use a positive filter (explicitly checking for source coming from ADD_VEC
et al), but there are more instructions to check this way and this is purely an optimization so
it is allowed to be conservative (as in, the cost of a mistake here is a potential slowdown,
not a correctness issue).
2024-02-26 10:38:28 -08:00
..
include CodeGen: Extract all vector tag patching into TAG_VECTOR (#1171) 2024-02-21 07:06:11 -08:00
src CodeGen: Optimize vandps for X64 when the source is computed 2024-02-26 10:38:28 -08:00