Home
last modified time | relevance | path

Searched refs:options_ (Results 1 – 13 of 13) sorted by relevance

/art/runtime/jit/
Djit.h199 return options_->GetOsrThreshold(); in OSRMethodThreshold()
203 return options_->GetCompileThreshold(); in HotMethodThreshold()
207 return options_->GetWarmupThreshold(); in WarmMethodThreshold()
211 return options_->GetPriorityThreadWeight(); in PriorityThreadWeight()
216 return options_->UseJitCompilation(); in UseJitCompilation()
220 return options_->GetSaveProfilingInfo(); in GetSaveProfilingInfo()
244 AddSamples(self, caller, options_->GetInvokeTransitionWeight(), false); in NotifyInterpreterToCompiledCodeTransition()
249 AddSamples(self, callee, options_->GetInvokeTransitionWeight(), false); in NotifyCompiledCodeToInterpreterTransition()
351 const JitOptions* const options_; variable
Dprofile_saver.cc101 options_(options) { in ProfileSaver()
102 DCHECK(options_.IsEnabled()); in ProfileSaver()
132 const uint64_t end_time = NanoTime() + MsToNs(options_.GetSaveResolvedClassesDelayMs()); in Run()
140 total_ms_of_sleep_ += options_.GetSaveResolvedClassesDelayMs(); in Run()
150 uint32_t max_wait_without_jit = options_.GetMinSavePeriodMs() * 16; in Run()
151 uint64_t cur_wait_without_jit = options_.GetMinSavePeriodMs(); in Run()
159 if (options_.GetWaitForJitNotificationsToSave()) { in Run()
177 uint64_t min_save_period_ns = MsToNs(options_.GetMinSavePeriodMs()); in Run()
232 if (jit_activity_notifications_ > options_.GetMinNotificationBeforeWake()) { in NotifyJitActivityInternal()
234 if ((NanoTime() - last_time_ns_saver_woke_up_) > MsToNs(options_.GetMinSavePeriodMs())) { in NotifyJitActivityInternal()
[all …]
Djit.cc178 options_(options), in Jit()
330 if (options_->GetSaveProfilingInfo()) { in StartProfileSaver()
331 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths); in StartProfileSaver()
336 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
337 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
350 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit()
351 if (options_->DumpJitInfoOnShutdown()) { in ~Jit()
704 thread_pool_->SetPthreadPriority(options_->GetThreadPoolPthreadPriority()); in CreateThreadPool()
Dprofile_saver.h155 const ProfileSaverOptions options_; variable
/art/disassembler/
Ddisassembler_arm.cc48 : DisassemblerStream(os), disasm_(disasm), options_(options) {} in CustomDisassemblerStream()
93 options_->thread_offset_name_function_(os(), operand.GetOffsetImmediate()); in operator <<()
110 const DisassemblerOptions* options_; member in art::arm::DisassemblerArm::CustomDisassembler::CustomDisassemblerStream
152 const uintptr_t begin = reinterpret_cast<uintptr_t>(options_->base_address_); in PrintLiteral()
153 const uintptr_t end = reinterpret_cast<uintptr_t>(options_->end_address_); in PrintLiteral()
158 if (!options_->absolute_addresses_) { in PrintLiteral()
Ddisassembler_arm64.h39 options_(options) { in CustomDisassembler()
69 DisassemblerOptions* options_; variable
Ddisassembler_arm64.cc106 options_->thread_offset_name_function_(tmp_stream, static_cast<uint32_t>(offset)); in VisitLoadStoreUnsignedOffset()
/art/dexlayout/
Ddexlayout.h109 : options_(options), in DexLayout()
133 return options_; in GetOptions()
189 Options& options_; variable
/art/oatdump/
Doatdump.cc388 options_(options), in OatDumper()
393 options_.absolute_addresses_, in OatDumper()
400 CHECK(options_.class_loader_ != nullptr); in OatDumper()
401 CHECK(options_.class_filter_ != nullptr); in OatDumper()
402 CHECK(options_.method_filter_ != nullptr); in OatDumper()
446 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump()
477 if (options_.absolute_addresses_) { in Dump()
491 if (options_.addr2instr_ != 0) { in Dump()
492 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()
528 if (!options_.dump_header_only_) { in Dump()
[all …]
/art/tools/dexanalyze/
Ddexanalyze.cc134 explicit Analysis(const Options* options) : options_(options) { in Analysis()
183 const Options* const options_; member in art::dexanalyze::DexAnalyze::Analysis
/art/runtime/jdwp/
Djdwp_main.cc329 : options_(options), in JdwpState()
595 if (options_->server) { in Run()
610 if (!netState->Establish(options_)) { in Run()
676 if (!options_->server) { in Run()
Djdwp.h362 const JdwpOptions* options_;
Djdwp_event.cc807 JdwpSuspendPolicy suspend_policy = (options_->suspend) ? SP_ALL : SP_NONE; in PostVMStart()