Lines Matching refs:jsThread
46 auto jsThread = new JSThread(vm); in Create() local
49 jsThread->EnableAsmInterpreter(); in Create()
52 jsThread->nativeAreaAllocator_ = vm->GetNativeAreaAllocator(); in Create()
53 jsThread->heapRegionAllocator_ = vm->GetHeapRegionAllocator(); in Create()
56 jsThread->glueData_.frameBase_ = static_cast<JSTaggedType *>( in Create()
58 jsThread->glueData_.currentFrame_ = jsThread->glueData_.frameBase_ + maxStackSize; in Create()
59 EcmaInterpreter::InitStackFrame(jsThread); in Create()
61 if (jsThread->IsAsmInterpreter()) { in Create()
62 jsThread->glueData_.stackLimit_ = GetAsmStackLimit(); in Create()
63 jsThread->glueData_.stackStart_ = GetCurrentStackPosition(); in Create()
65 return jsThread; in Create()