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:
seonghyun kim 2017-01-25 19:15:05 +09:00
commit ca93d380e1
7 changed files with 222 additions and 179 deletions

View file

@ -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