• Home
  • Raw
  • Download

Lines Matching refs:options

84 JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) {  in CreateFromRuntimeArguments()  argument
86 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments()
89 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity); in CreateFromRuntimeArguments()
91 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity); in CreateFromRuntimeArguments()
93 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments()
95 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts); in CreateFromRuntimeArguments()
97 options.GetOrDefault(RuntimeArgumentMap::JITPoolThreadPthreadPriority); in CreateFromRuntimeArguments()
99 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) { in CreateFromRuntimeArguments()
100 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
111 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) { in CreateFromRuntimeArguments()
112 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold); in CreateFromRuntimeArguments()
118 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) { in CreateFromRuntimeArguments()
119 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold); in CreateFromRuntimeArguments()
129 if (options.Exists(RuntimeArgumentMap::JITPriorityThreadWeight)) { in CreateFromRuntimeArguments()
131 *options.Get(RuntimeArgumentMap::JITPriorityThreadWeight); in CreateFromRuntimeArguments()
143 if (options.Exists(RuntimeArgumentMap::JITInvokeTransitionWeight)) { in CreateFromRuntimeArguments()
145 *options.Get(RuntimeArgumentMap::JITInvokeTransitionWeight); in CreateFromRuntimeArguments()
176 Jit::Jit(JitCodeCache* code_cache, JitOptions* options) in Jit() argument
178 options_(options), in Jit()
183 Jit* Jit::Create(JitCodeCache* code_cache, JitOptions* options) { in Create() argument
193 std::unique_ptr<Jit> jit(new Jit(code_cache, options)); in Create()
205 << PrettySize(options->GetCodeCacheInitialCapacity()) in Create()
206 << ", max_capacity=" << PrettySize(options->GetCodeCacheMaxCapacity()) in Create()
207 << ", compile_threshold=" << options->GetCompileThreshold() in Create()
208 << ", profile_saver_options=" << options->GetProfileSaverOptions(); in Create()