Home
last modified time | relevance | path

Searched refs:info_ (Results 1 – 3 of 3) sorted by relevance

/art/compiler/debug/
Delf_debug_info_writer.h116 info_(Is64BitInstructionSet(owner_->builder_->GetIsa()), &owner->debug_abbrev_) { in ElfCompilationUnitWriter()
127 info_.StartTag(DW_TAG_compile_unit); in Write()
128 info_.WriteString(DW_AT_producer, "Android dex2oat"); in Write()
129 info_.WriteData1(DW_AT_language, DW_LANG_Java); in Write()
130 info_.WriteString(DW_AT_comp_dir, "$JAVA_SRC_ROOT"); in Write()
131 info_.WriteAddr(DW_AT_low_pc, base_address + compilation_unit.code_address); in Write()
132 info_.WriteUdata(DW_AT_high_pc, dchecked_integral_cast<uint32_t>(cu_size)); in Write()
133 info_.WriteSecOffset(DW_AT_stmt_list, compilation_unit.debug_line_offset); in Write()
152 size_t reference_tag_offset = info_.StartTag(DW_TAG_reference_type); in Write()
154 size_t type_attrib_offset = info_.size(); in Write()
[all …]
/art/runtime/jit/
Doffline_profiling_info.cc189 AddUintToBuffer(&buffer, static_cast<uint16_t>(info_.size())); in Save()
191 for (const auto& it : info_) { in Save()
244 auto info_it = info_.find(dex_location); in GetOrAddDexFileData()
245 if (info_it == info_.end()) { in GetOrAddDexFileData()
246 info_it = info_.Put(dex_location, DexFileData(checksum)); in GetOrAddDexFileData()
526 for (const auto& other_it : other.info_) { in MergeWith()
527 auto info_it = info_.find(other_it.first); in MergeWith()
528 if ((info_it != info_.end()) && (info_it->second.checksum != other_it.second.checksum)) { in MergeWith()
534 for (const auto& other_it : other.info_) { in MergeWith()
537 auto info_it = info_.find(other_dex_location); in MergeWith()
[all …]
Doffline_profiling_info.h178 DexFileToProfileInfoMap info_; variable