Lines Matching defs:runtimeOptions
4316 JSRuntimeOptions runtimeOptions;
4317 runtimeOptions.SetArkProperties(option.GetArkProperties());
4318 runtimeOptions.SetMemConfigProperty(option.GetMemConfigProperty());
4319 runtimeOptions.SetArkBundleName(option.GetArkBundleName());
4320 runtimeOptions.SetLongPauseTime(option.GetLongPauseTime());
4321 runtimeOptions.SetGcThreadNum(option.GetGcThreadNum());
4322 runtimeOptions.SetIsWorker(option.GetIsWorker());
4323 runtimeOptions.SetIsRestrictedWorker(option.GetIsRestrictedWorker());
4325 runtimeOptions.SetHeapSizeLimit(option.GetGcPoolSize());
4329 runtimeOptions.SetEnableAsmInterpreter(option.GetEnableAsmInterpreter());
4331 runtimeOptions.SetEnableAsmInterpreter(false);
4333 runtimeOptions.SetEnableBuiltinsLazy(option.GetEnableBuiltinsLazy());
4334 runtimeOptions.SetAsmOpcodeDisableRange(option.GetAsmOpcodeDisableRange());
4336 runtimeOptions.SetEnableAOT(option.GetEnableAOT());
4337 runtimeOptions.SetEnablePGOProfiler(option.GetEnableProfile());
4338 runtimeOptions.SetPGOProfilerPath(option.GetProfileDir());
4340 runtimeOptions.SetLogLevel(Log::LevelToString(Log::ConvertFromRuntime(option.GetLogLevel())));
4341 runtimeOptions.SetEnableArkTools(option.GetEnableArkTools());
4342 return CreateEcmaVM(runtimeOptions);
5329 JSRuntimeOptions runtimeOptions;
5330 runtimeOptions.SetLogLevel(Log::LevelToString(Log::ConvertFromRuntime(option.GetLogLevel())));
5331 Log::Initialize(runtimeOptions);