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()
78 DisassemblerOptions* options_; variable
Ddisassembler_arm64.cc153 options_->thread_offset_name_function_(tmp_stream, static_cast<uint32_t>(offset)); in AppendThreadOfsetName()
/art/runtime/jit/
Djit.h275 return options_->GetThreadPoolPthreadPriority(); in GetThreadPoolPthreadPriority()
279 return options_->GetZygoteThreadPoolPthreadPriority(); in GetZygoteThreadPoolPthreadPriority()
283 return options_->GetOptimizeThreshold(); in HotMethodThreshold()
287 return options_->GetWarmupThreshold(); in WarmMethodThreshold()
291 return options_->GetPriorityThreadWeight(); in PriorityThreadWeight()
297 return options_->UseJitCompilation(); in UseJitCompilation()
301 return options_->GetSaveProfilingInfo(); in GetSaveProfilingInfo()
485 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()
158 uint32_t max_wait_without_jit = options_.GetMinSavePeriodMs() * 16; in Run()
159 uint64_t cur_wait_without_jit = options_.GetMinSavePeriodMs(); in Run()
173 if (options_.GetWaitForJitNotificationsToSave()) { in Run()
191 uint64_t min_save_period_ns = MsToNs(options_.GetMinSavePeriodMs()); in Run()
302 if (jit_activity_notifications_ > options_.GetMinNotificationBeforeWake()) { in NotifyJitActivityInternal()
[all …]
Djit.cc181 options_(options), in Jit()
378 if (options_->GetSaveProfilingInfo()) { in StartProfileSaver()
379 ProfileSaver::Start(options_->GetProfileSaverOptions(), in StartProfileSaver()
388 if (options_->GetSaveProfilingInfo() && ProfileSaver::IsStarted()) { in StopProfileSaver()
389 ProfileSaver::Stop(options_->DumpJitInfoOnShutdown()); in StopProfileSaver()
402 DCHECK_IMPLIES(options_->GetSaveProfilingInfo(), !ProfileSaver::IsStarted()); in ~Jit()
403 if (options_->DumpJitInfoOnShutdown()) { in ~Jit()
1211 ? options_->GetZygoteThreadPoolPthreadPriority() in CreateThreadPool()
1212 : options_->GetThreadPoolPthreadPriority()); in CreateThreadPool()
1321 options_->UseProfiledJitCompilation() && in RegisterDexFiles()
[all …]
Dprofile_saver.h178 const ProfileSaverOptions options_; variable
/art/dexlayout/
Ddexlayout.cc602 if (options_.output_format_ == kOutputPlain) { in DumpEncodedValue()
843 if (options_.output_format_ == kOutputPlain) { in DumpInterface()
1160 if (options_.disassemble_) { in DumpCode()
1238 if (options_.exports_only_ && (flags & (kAccPublic | kAccProtected)) == 0) { in DumpMethod()
1248 if (options_.output_format_ == kOutputPlain) { in DumpMethod()
1253 if (options_.show_section_headers_) { in DumpMethod()
1274 if (options_.disassemble_) { in DumpMethod()
1277 } else if (options_.output_format_ == kOutputXml) { in DumpMethod()
1361 if (options_.exports_only_ && (flags & (kAccPublic | kAccProtected)) == 0) { in DumpSField()
1371 if (options_.output_format_ == kOutputPlain) { in DumpSField()
[all …]
Ddexlayout.h111 : options_(options), in DexLayout()
135 return options_; in GetOptions()
193 Options& options_; variable
/art/oatdump/
Doatdump.cc385 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()
478 if (options_.absolute_addresses_) { in Dump()
492 if (options_.addr2instr_ != 0) { in Dump()
493 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()
529 if (!options_.dump_header_only_) { in Dump()
[all …]
/art/tools/dexanalyze/
Ddexanalyze.cc135 explicit Analysis(const Options* options) : options_(options) { in Analysis()
184 const Options* const options_; member in art::dexanalyze::DexAnalyze::Analysis