mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
1. reduce stack usage of ByteCodeInterpreter
2. remove memset warning from fillStack Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
7dfad6182e
commit
ca93d380e1
7 changed files with 222 additions and 179 deletions
|
|
@ -9,7 +9,7 @@ OpcodeTable g_opcodeTable;
|
|||
OpcodeTable::OpcodeTable()
|
||||
{
|
||||
ExecutionState state(nullptr, nullptr);
|
||||
ByteCodeInterpreter::interpret(state, nullptr, nullptr, 0, nullptr, nullptr);
|
||||
ByteCodeInterpreter::interpret(state, nullptr, 0, nullptr, nullptr);
|
||||
}
|
||||
|
||||
// ECMA-262 11.3 Line Terminators
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue