Migrate to new bdwgc 8.0 GCutil & use cmake on building gc (#385)

Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
Patrick Kim 2019-08-21 18:14:36 +09:00 committed by Boram Bae
commit e3a8fba176
45 changed files with 130 additions and 151 deletions

View file

@ -63,7 +63,7 @@ ScriptFunctionObject::ScriptFunctionObject(ExecutionState& state, CodeBlock* cod
NEVER_INLINE void ScriptFunctionObject::generateByteCodeBlock(ExecutionState& state)
{
Vector<CodeBlock*, GCUtil::gc_malloc_ignore_off_page_allocator<CodeBlock*>>& v = state.context()->compiledCodeBlocks();
Vector<CodeBlock*, GCUtil::gc_malloc_allocator<CodeBlock*>>& v = state.context()->compiledCodeBlocks();
auto& currentCodeSizeTotal = state.context()->vmInstance()->compiledByteCodeSize();