Roberto Ierusalimschy
|
c72ac048b9
|
conditional jumps "deunified"
(if a jump table is used, the unification may harm jump prediction.)
|
2018-02-21 16:43:44 -03:00 |
Roberto Ierusalimschy
|
212095a601
|
new opcodes OP_GTI/OP_GEI
|
2018-02-21 12:49:32 -03:00 |
Roberto Ierusalimschy
|
06865aa01d
|
simpler implementation for 'LTintfloat'/'LEintfloat'
+ 'LTfloatint'/'LEfloatint'
|
2018-02-21 10:47:03 -03:00 |
Roberto Ierusalimschy
|
465b474899
|
small reorganization of 'luaV_flttointeger'/'luaV_tointeger'
|
2018-02-21 09:54:26 -03:00 |
Roberto Ierusalimschy
|
1afd5a152d
|
more generic way to handle 'gclist'
|
2018-02-19 17:06:56 -03:00 |
Roberto Ierusalimschy
|
49dae52d08
|
correct way to check stack space for vararg functions
|
2018-02-17 17:20:00 -02:00 |
Roberto Ierusalimschy
|
0682fe8169
|
some simplifications/optimizations in returns from Lua functions
|
2018-02-15 13:34:29 -02:00 |
Roberto Ierusalimschy
|
b1379936cf
|
vararg back to '...' (but with another implementation)
new implementation should have zero overhead for non-vararg functions
|
2018-02-09 13:16:06 -02:00 |
Roberto Ierusalimschy
|
318a9a5859
|
new opcode 'PREPVARARG'
(avoids test for vararg function in all function calls)
|
2018-02-07 13:18:04 -02:00 |
Roberto Ierusalimschy
|
51280ef2ad
|
call hooks for Lua functions called by 'luaV_execute'
|
2018-02-06 17:16:56 -02:00 |
Roberto Ierusalimschy
|
dc0ab1e8ca
|
warnings in VS (implicit casts from ptrdiff_t to int)
|
2018-01-29 14:21:35 -02:00 |
Roberto Ierusalimschy
|
5bd8d388de
|
OP_CONCAT does not move its result (to simplify its execution)
|
2018-01-27 14:56:33 -02:00 |
Roberto Ierusalimschy
|
d2fb34ac88
|
'OP_TAILCALL' calling C functions finishes the call and returns
(instead of waiting for following 'OP_RETURN')
|
2018-01-14 15:27:50 -02:00 |
Roberto Ierusalimschy
|
ab0a851db4
|
'luaD_tryfuncTM' can ensure it does not change the stack
|
2018-01-10 17:19:27 -02:00 |
Roberto Ierusalimschy
|
ad960095bf
|
avoid jumping into a variable scope (C++ does not allow that)
|
2018-01-09 12:23:40 -02:00 |
Roberto Ierusalimschy
|
a9295a2b8e
|
typos in comments
|
2017-12-30 18:46:18 -02:00 |
Roberto Ierusalimschy
|
cf7eff45f3
|
keep control of stack top in Lua functions concentrated in 'luaV_execute'
|
2017-12-28 13:42:57 -02:00 |
Roberto Ierusalimschy
|
4676f6599e
|
new macros 'isOT'/'isIT'
(plus exchanged parameters of OP_VARARG to make it similar to other
'isOT' instructions)
|
2017-12-22 12:16:46 -02:00 |
Roberto Ierusalimschy
|
1d5b885437
|
when running Lua code, there is no need to keep 'L->top' "correct";
set it only when needed.
|
2017-12-20 12:58:05 -02:00 |
Roberto Ierusalimschy
|
3153a41e33
|
no need to save 'pc' in case of allocation errors
(allocation errors do not call message handlers)
|
2017-12-19 14:18:04 -02:00 |
Roberto Ierusalimschy
|
d388c165ef
|
new opcodes 'FORLOOP1'/'FORPREP1' for "basic for" (integer variable
with increment of 1)
|
2017-12-18 15:53:50 -02:00 |
Roberto Ierusalimschy
|
86431a2f1c
|
new opcodes BANDK/BORK/BXORK. (They do not use immediate operands
because, too often, masks in bitwise operations are integers larger
than one byte.)
|
2017-12-13 16:32:09 -02:00 |
Roberto Ierusalimschy
|
c7ee7fe026
|
new opcodes OP_SHLI/OP_SHRI
|
2017-12-04 15:41:30 -02:00 |
Roberto Ierusalimschy
|
10b8c99bbb
|
small peephole optimizations
|
2017-11-30 11:29:18 -02:00 |
Roberto Ierusalimschy
|
745eb41993
|
new opcodes OP_RETURN0/OP_RETURN1
|
2017-11-29 14:57:36 -02:00 |
Roberto Ierusalimschy
|
c766e4103d
|
'luaV_execute' gets call info as extra argument (it is always
available on call sites)
|
2017-11-29 11:02:17 -02:00 |
Roberto Ierusalimschy
|
1a5e8c1014
|
conditional jumps unified in label "condjump' + new variable 'vra'
to avoid excessive use of macro 's2v'
|
2017-11-28 12:51:00 -02:00 |
Roberto Ierusalimschy
|
ff5fe51044
|
using register 'k' for conditions in tests (we only need one bit there)
|
2017-11-28 10:58:18 -02:00 |
Roberto Ierusalimschy
|
093c16b67b
|
new opcodes 'OP_LTI' and 'OP_LEI'
|
2017-11-27 15:44:31 -02:00 |
Roberto Ierusalimschy
|
73abfde2ef
|
small simplifications around 'luaT_callorderTM'
|
2017-11-23 17:18:10 -02:00 |
Roberto Ierusalimschy
|
196c87c9ce
|
no more 'stackless' implementation; 'luaV_execute' calls itself
recursively to execute function calls. 'unroll' continues all
executions suspended by an yield (through a long jump)
|
2017-11-23 14:41:16 -02:00 |
Roberto Ierusalimschy
|
3c230cc825
|
using 'A' for register instead of 'B' in relational opcodes
('R(A)' is already created by default for all instructions.)
|
2017-11-22 17:15:44 -02:00 |
Roberto Ierusalimschy
|
41f2936d8f
|
new opcode 'OP_EQI' for equality with immediate numbers
|
2017-11-22 16:41:20 -02:00 |
Roberto Ierusalimschy
|
14c3aa12b5
|
more direct implementation for tail calls.
|
2017-11-21 12:18:03 -02:00 |
Roberto Ierusalimschy
|
f3ca52bfa9
|
in order comparison opcodes, fast track for floats too
|
2017-11-20 10:57:39 -02:00 |
Roberto Ierusalimschy
|
4c0e36a46e
|
new instruction 'OP_EQK' (for equality with constants)
|
2017-11-16 10:59:14 -02:00 |
Roberto Ierusalimschy
|
5440b42f43
|
using 'trap' to stop 'luaV_execute' when necessary (tracing and
to update its copy of 'base' when the stack is reallocated)
|
2017-11-13 13:36:52 -02:00 |
Roberto Ierusalimschy
|
32fef60743
|
detail ('Protect' defined as an expression)
|
2017-11-08 17:01:02 -02:00 |
Roberto Ierusalimschy
|
26679ea35b
|
new function 'luaV_flttointeger' to convert floats to integers (without
string coercions) + string operands to bitwise operations handled
by string metamethods
|
2017-11-08 12:50:23 -02:00 |
Roberto Ierusalimschy
|
c3e5946fb2
|
new format for JUMP instructions (to allow larger offsets)
|
2017-11-07 15:20:42 -02:00 |
Roberto Ierusalimschy
|
ad0704e40c
|
back to 'CallInfo' (no gains with its removal)
|
2017-11-07 11:25:26 -02:00 |
Roberto Ierusalimschy
|
93fd67b793
|
no more 'CallInfo' structure
|
2017-11-04 10:57:02 -02:00 |
Roberto Ierusalimschy
|
7612f7735d
|
removing uses of 'CallInfo'
|
2017-11-03 17:33:22 -02:00 |
Roberto Ierusalimschy
|
472c560705
|
no more useful fields in CallInfo
|
2017-11-03 15:22:54 -02:00 |
Roberto Ierusalimschy
|
54eb35a8aa
|
more fields moved out of 'CallInfo'
|
2017-11-03 10:12:30 -02:00 |
Roberto Ierusalimschy
|
b9e76be8a6
|
using 'L->func' when possible
|
2017-11-01 16:20:48 -02:00 |
Roberto Ierusalimschy
|
c5482468fd
|
baby steps to remove 'CallInfo': keeping 'L->func' correct
|
2017-10-31 15:54:35 -02:00 |
Roberto Ierusalimschy
|
a1ef58b3a5
|
eplicit 1-bit opcode operand 'k'
|
2017-10-04 18:56:32 -03:00 |
Roberto Ierusalimschy
|
8fbe9e3470
|
new opcodes with immediate integer operand for all arithmetic operations
|
2017-10-04 12:49:24 -03:00 |
Roberto Ierusalimschy
|
bc1b0733b8
|
avoid the use of bit 'Bk' ('B' will lose this bit soon)
|
2017-10-01 16:13:43 -03:00 |