Searched refs:options_ (Results 1 – 11 of 11) sorted by relevance
/art/runtime/jit/ |
D | jit.h | 277 return options_->GetOsrThreshold(); in OSRMethodThreshold() 281 return options_->GetCompileThreshold(); in HotMethodThreshold() 285 return options_->GetWarmupThreshold(); in WarmMethodThreshold() 289 return options_->GetPriorityThreadWeight(); in PriorityThreadWeight() 295 return options_->UseJitCompilation(); in UseJitCompilation() 299 return options_->GetSaveProfilingInfo(); in GetSaveProfilingInfo() 324 AddSamples(self, caller, options_->GetInvokeTransitionWeight(), false); in NotifyInterpreterToCompiledCodeTransition() 331 AddSamples(self, callee, options_->GetInvokeTransitionWeight(), false); in NotifyCompiledCodeToInterpreterTransition() 486 const JitOptions* const options_; variable
|
D | profile_saver.cc | 103 options_(options) { in ProfileSaver() 104 DCHECK(options_.IsEnabled()); in ProfileSaver() 138 const uint64_t end_time = NanoTime() + MsToNs(options_.GetSaveResolvedClassesDelayMs()); in Run() 146 total_ms_of_sleep_ += options_.GetSaveResolvedClassesDelayMs(); in Run() 156 uint32_t max_wait_without_jit = options_.GetMinSavePeriodMs() * 16; in Run() 157 uint64_t cur_wait_without_jit = options_.GetMinSavePeriodMs(); in Run() 165 if (options_.GetWaitForJitNotificationsToSave()) { in Run() 183 uint64_t min_save_period_ns = MsToNs(options_.GetMinSavePeriodMs()); in Run() 238 if (jit_activity_notifications_ > options_.GetMinNotificationBeforeWake()) { in NotifyJitActivityInternal() 240 if ((NanoTime() - last_time_ns_saver_woke_up_) > MsToNs(options_.GetMinSavePeriodMs())) { in NotifyJitActivityInternal() [all …]
|
D | jit.cc | 217 options_(options), in Jit() 394 if (options_->GetSaveProfilingInfo()) { in StartProfileSaver() 395 ProfileSaver::Start(options_->GetProfileSaverOptions(), filename, code_cache_, code_paths); in StartProfileSaver() 400 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver() 401 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver() 414 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit() 415 if (options_->DumpJitInfoOnShutdown()) { in ~Jit() 1209 thread_pool_->SetPthreadPriority(options_->GetThreadPoolPthreadPriority()); in CreateThreadPool() 1542 !options_->UseTieredJitCompilation()) { in MaybeCompileMethod() 1570 (options_->UseTieredJitCompilation() || options_->UseBaselineCompiler()) in MaybeCompileMethod() [all …]
|
D | profile_saver.h | 156 const ProfileSaverOptions options_; variable
|
/art/disassembler/ |
D | disassembler_arm.cc | 48 : 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()
|
D | disassembler_arm64.h | 39 options_(options) { in CustomDisassembler() 69 DisassemblerOptions* options_; variable
|
D | disassembler_arm64.cc | 106 options_->thread_offset_name_function_(tmp_stream, static_cast<uint32_t>(offset)); in VisitLoadStoreUnsignedOffset()
|
/art/dexlayout/ |
D | dexlayout.cc | 532 if (options_.output_format_ == kOutputPlain) { in DumpEncodedValue() 773 if (options_.output_format_ == kOutputPlain) { in DumpInterface() 1090 if (options_.disassemble_) { in DumpCode() 1166 if (options_.exports_only_ && (flags & (kAccPublic | kAccProtected)) == 0) { in DumpMethod() 1176 if (options_.output_format_ == kOutputPlain) { in DumpMethod() 1181 if (options_.show_section_headers_) { in DumpMethod() 1202 if (options_.disassemble_) { in DumpMethod() 1205 } else if (options_.output_format_ == kOutputXml) { in DumpMethod() 1289 if (options_.exports_only_ && (flags & (kAccPublic | kAccProtected)) == 0) { in DumpSField() 1299 if (options_.output_format_ == kOutputPlain) { in DumpSField() [all …]
|
D | dexlayout.h | 109 : options_(options), in DexLayout() 133 return options_; in GetOptions() 189 Options& options_; variable
|
/art/tools/dexanalyze/ |
D | dexanalyze.cc | 134 explicit Analysis(const Options* options) : options_(options) { in Analysis() 183 const Options* const options_; member in art::dexanalyze::DexAnalyze::Analysis
|
/art/oatdump/ |
D | oatdump.cc | 385 options_(options), in OatDumper() 390 options_.absolute_addresses_, in OatDumper() 397 CHECK(options_.class_loader_ != nullptr); in OatDumper() 398 CHECK(options_.class_filter_ != nullptr); in OatDumper() 399 CHECK(options_.method_filter_ != nullptr); in OatDumper() 443 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump() 476 if (options_.absolute_addresses_) { in Dump() 490 if (options_.addr2instr_ != 0) { in Dump() 491 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump() 527 if (!options_.dump_header_only_) { in Dump() [all …]
|