Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_arm.cc48 : DisassemblerStream(os), disasm_(disasm), options_(options) {} in CustomDisassemblerStream()
75 const uintptr_t begin = reinterpret_cast<uintptr_t>(options_->base_address_); in operator <<()
76 const uintptr_t end = reinterpret_cast<uintptr_t>(options_->end_address_); in operator <<()
77 uintptr_t address = label.GetLocation() + (options_->absolute_addresses_ ? 0u : begin); in operator <<()
83 options_->thread_offset_name_function_(os(), imm12); in operator <<()
109 options_->thread_offset_name_function_(os(), operand.GetOffsetImmediate()); in operator <<()
126 const DisassemblerOptions* options_; member in art::arm::DisassemblerArm::CustomDisassembler::CustomDisassemblerStream
168 const uintptr_t begin = reinterpret_cast<uintptr_t>(options_->base_address_); in PrintLiteral()
169 const uintptr_t end = reinterpret_cast<uintptr_t>(options_->end_address_); in PrintLiteral()
174 if (!options_->absolute_addresses_) { in PrintLiteral()
Ddisassembler_arm64.h39 options_(options) { in CustomDisassembler()
74 DisassemblerOptions* options_; variable
Ddisassembler_arm64.cc129 options_->thread_offset_name_function_(tmp_stream, static_cast<uint32_t>(offset)); in AppendThreadOfsetName()
/art/runtime/jit/
Djit.h281 return options_->GetThreadPoolPthreadPriority(); in GetThreadPoolPthreadPriority()
285 return options_->GetOsrThreshold(); in OSRMethodThreshold()
289 return options_->GetCompileThreshold(); in HotMethodThreshold()
293 return options_->GetWarmupThreshold(); in WarmMethodThreshold()
297 return options_->GetPriorityThreadWeight(); in PriorityThreadWeight()
303 return options_->UseJitCompilation(); in UseJitCompilation()
307 return options_->GetSaveProfilingInfo(); in GetSaveProfilingInfo()
326 AddSamples(self, caller, options_->GetInvokeTransitionWeight(), false); in NotifyInterpreterToCompiledCodeTransition()
333 AddSamples(self, callee, options_->GetInvokeTransitionWeight(), false); in NotifyCompiledCodeToInterpreterTransition()
496 const JitOptions* const options_; variable
Dprofile_saver.cc100 options_(options) { in ProfileSaver()
101 DCHECK(options_.IsEnabled()); in ProfileSaver()
128 options_.GetMinFirstSaveMs() != ProfileSaverOptions::kMinFirstSaveMsNotSet; in Run()
140 ? options_.GetMinFirstSaveMs() in Run()
141 : options_.GetSaveResolvedClassesDelayMs()); in Run()
149 total_ms_of_sleep_ += options_.GetSaveResolvedClassesDelayMs(); in Run()
159 uint32_t max_wait_without_jit = options_.GetMinSavePeriodMs() * 16; in Run()
160 uint64_t cur_wait_without_jit = options_.GetMinSavePeriodMs(); in Run()
174 if (options_.GetWaitForJitNotificationsToSave()) { in Run()
192 uint64_t min_save_period_ns = options_.GetMinSavePeriodMs(); in Run()
[all …]
Djit.cc219 options_(options), in Jit()
396 if (options_->GetSaveProfilingInfo()) { in StartProfileSaver()
397 ProfileSaver::Start(options_->GetProfileSaverOptions(), in StartProfileSaver()
406 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
407 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
420 DCHECK(!options_->GetSaveProfilingInfo() || !ProfileSaver::IsStarted()); in ~Jit()
421 if (options_->DumpJitInfoOnShutdown()) { in ~Jit()
1193 ? options_->GetZygoteThreadPoolPthreadPriority() in CreateThreadPool()
1194 : options_->GetThreadPoolPthreadPriority()); in CreateThreadPool()
1298 options_->UseProfiledJitCompilation() && in RegisterDexFiles()
[all …]
Dprofile_saver.h178 const ProfileSaverOptions options_; variable
/art/dexlayout/
Ddexlayout.cc532 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 …]
Ddexlayout.h108 : options_(options), in DexLayout()
132 return options_; in GetOptions()
188 Options& options_; variable
/art/oatdump/
Doatdump.cc386 options_(options), in OatDumper()
391 options_.absolute_addresses_, in OatDumper()
398 CHECK(options_.class_loader_ != nullptr); in OatDumper()
399 CHECK(options_.class_filter_ != nullptr); in OatDumper()
400 CHECK(options_.method_filter_ != nullptr); in OatDumper()
444 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump()
479 if (options_.absolute_addresses_) { in Dump()
493 if (options_.addr2instr_ != 0) { in Dump()
494 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()
530 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