mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Add support for two components to vector.create fastcall function
This commit is contained in:
parent
7246c2ae89
commit
044c97b38d
2 changed files with 16 additions and 13 deletions
|
@ -25,6 +25,8 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
LUAU_FASTFLAG(LuauVector2Constructor)
|
||||||
|
|
||||||
// luauF functions implement FASTCALL instruction that performs a direct execution of some builtin functions from the VM
|
// luauF functions implement FASTCALL instruction that performs a direct execution of some builtin functions from the VM
|
||||||
// The rule of thumb is that FASTCALL functions can not call user code, yield, fail, or reallocate stack.
|
// The rule of thumb is that FASTCALL functions can not call user code, yield, fail, or reallocate stack.
|
||||||
// If types of the arguments mismatch, luauF_* needs to return -1 and the execution will fall back to the usual call path
|
// If types of the arguments mismatch, luauF_* needs to return -1 and the execution will fall back to the usual call path
|
||||||
|
@ -1055,25 +1057,25 @@ static int luauF_tunpack(lua_State* L, StkId res, TValue* arg0, int nresults, St
|
||||||
|
|
||||||
static int luauF_vector(lua_State* L, StkId res, TValue* arg0, int nresults, StkId args, int nparams)
|
static int luauF_vector(lua_State* L, StkId res, TValue* arg0, int nresults, StkId args, int nparams)
|
||||||
{
|
{
|
||||||
if (nparams >= 3 && nresults <= 1 && ttisnumber(arg0) && ttisnumber(args) && ttisnumber(args + 1))
|
int minparams = FFlag::LuauVector2Constructor ? 2 : 3;
|
||||||
|
|
||||||
|
if (nparams >= minparams && nparams <= LUA_VECTOR_SIZE && nresults <= 1 && ttisnumber(arg0) && ttisnumber(args))
|
||||||
{
|
{
|
||||||
double x = nvalue(arg0);
|
float value[4];
|
||||||
double y = nvalue(args);
|
value[0] = (float)nvalue(arg0);
|
||||||
double z = nvalue(args + 1);
|
value[1] = (float)nvalue(args);
|
||||||
|
value[2] = 0.0;
|
||||||
|
value[3] = 0.0;
|
||||||
|
|
||||||
#if LUA_VECTOR_SIZE == 4
|
for (int i = 2; i < nparams; i++)
|
||||||
double w = 0.0;
|
|
||||||
if (nparams >= 4)
|
|
||||||
{
|
{
|
||||||
if (!ttisnumber(args + 2))
|
StkId a = args + i - 1;
|
||||||
|
if (!ttisnumber(a))
|
||||||
return -1;
|
return -1;
|
||||||
w = nvalue(args + 2);
|
value[i] = (float)nvalue(a);
|
||||||
}
|
}
|
||||||
setvvalue(res, float(x), float(y), float(z), float(w));
|
|
||||||
#else
|
|
||||||
setvvalue(res, float(x), float(y), float(z), 0.0f);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
setvvalue(res, value[0], value[1], value[2], value[3]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ function ecall(fn, ...)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- make sure we cover both builtin and C impl
|
-- make sure we cover both builtin and C impl
|
||||||
|
assert(vector.create(1, 2) == vector.create("1", "2"))
|
||||||
assert(vector.create(1, 2, 4) == vector.create("1", "2", "4"))
|
assert(vector.create(1, 2, 4) == vector.create("1", "2", "4"))
|
||||||
|
|
||||||
-- 'create'
|
-- 'create'
|
||||||
|
|
Loading…
Add table
Reference in a new issue