Home
last modified time | relevance | path

Searched refs:total_size (Results 1 – 19 of 19) sorted by relevance

/art/tools/dexanalyze/
Ddexanalyze_experiments.cc188 void AnalyzeDebugInfo::Dump(std::ostream& os, uint64_t total_size) const { in Dump()
189 os << "Debug info bytes " << Percent(total_bytes_, total_size) << "\n"; in Dump()
191 os << " DBG_END_SEQUENCE: " << Percent(total_end_seq_bytes_, total_size) << "\n"; in Dump()
192 os << " DBG_ADVANCE_PC: " << Percent(total_advance_pc_bytes_, total_size) << "\n"; in Dump()
193 os << " DBG_ADVANCE_LINE: " << Percent(total_advance_line_bytes_, total_size) << "\n"; in Dump()
194 os << " DBG_START_LOCAL: " << Percent(total_start_local_bytes_, total_size) << "\n"; in Dump()
196 << Percent(total_start_local_extended_bytes_, total_size) << "\n"; in Dump()
197 os << " DBG_END_LOCAL: " << Percent(total_end_local_bytes_, total_size) << "\n"; in Dump()
198 os << " DBG_RESTART_LOCAL: " << Percent(total_restart_local_bytes_, total_size) << "\n"; in Dump()
199 os << " DBG_SET_PROLOGUE bytes " << Percent(total_epilogue_bytes_, total_size) << "\n"; in Dump()
[all …]
Ddexanalyze_experiments.h60 virtual void Dump(std::ostream& os, uint64_t total_size) const = 0;
69 void Dump(std::ostream& os, uint64_t total_size) const override;
97 void Dump(std::ostream& os, uint64_t total_size) const override;
167 void Dump(std::ostream& os, uint64_t total_size) const override;
Ddexanalyze_strings.cc542 void AnalyzeStrings::Dump(std::ostream& os, uint64_t total_size) const { in Dump()
543 os << "Total string data bytes " << Percent(string_data_bytes_, total_size) << "\n"; in Dump()
545 << Percent(total_unique_string_data_bytes_, total_size) << "\n"; in Dump()
546 os << "UTF-16 string data bytes " << Percent(wide_string_bytes_, total_size) << "\n"; in Dump()
547 os << "ASCII string data bytes " << Percent(ascii_string_bytes_, total_size) << "\n"; in Dump()
555 os << "Total shared prefix bytes " << Percent(total_shared_prefix_bytes_, total_size) << "\n"; in Dump()
556 os << "Prefix dictionary cost " << Percent(total_prefix_dict_, total_size) << "\n"; in Dump()
557 os << "Prefix table cost " << Percent(total_prefix_table_, total_size) << "\n"; in Dump()
558 os << "Prefix index cost " << Percent(total_prefix_index_cost_, total_size) << "\n"; in Dump()
564 os << "Prefix base savings " << Percent(total_prefix_savings_, total_size) << "\n"; in Dump()
[all …]
Ddexanalyze_strings.h46 void Dump(std::ostream& os, uint64_t total_size) const override;
Ddexanalyze_bytecode.cc167 void NewRegisterInstructions::Dump(std::ostream& os, uint64_t total_size) const { in Dump()
169 os << "Total Dex code bytes: " << Percent(dex_code_bytes_, total_size) << "\n"; in Dump()
170 os << "Total output code bytes: " << Percent(output_size_, total_size) << "\n"; in Dump()
171 os << "Total deduped code bytes: " << Percent(deduped_size_, total_size) << "\n"; in Dump()
207 os << Percent(pairs[i].first, total_size) << " " in Dump()
214 << Percent(top_instructions_savings, total_size) << "\n"; in Dump()
Ddexanalyze_bytecode.h64 void Dump(std::ostream& os, uint64_t total_size) const;
/art/runtime/
Dmapping_table.h45 uint32_t total_size = DecodeUnsignedLeb128(&table); in DexToPcSize() local
47 return total_size - pc_to_dex_size; in DexToPcSize()
54 uint32_t total_size = DecodeUnsignedLeb128(&table); in FirstDexToPcPtr() local
57 DCHECK_GT(total_size, pc_to_dex_size); in FirstDexToPcPtr()
/art/compiler/jni/quick/mips64/
Dcalling_convention_mips64.cc194 size_t total_size = frame_data_size; in FrameSize() local
197 total_size += handle_scope_size; // Handle scope size. in FrameSize()
201 total_size += SizeOfReturnValue(); in FrameSize()
203 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc230 size_t total_size = frame_data_size; in FrameSize() local
233 total_size += handle_scope_size; // handle scope size in FrameSize()
237 total_size += SizeOfReturnValue(); in FrameSize()
239 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc212 size_t total_size = frame_data_size; in FrameSize() local
215 total_size += handle_scope_size; // handle scope size in FrameSize()
219 total_size += SizeOfReturnValue(); in FrameSize()
221 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/mips/
Dcalling_convention_mips.cc353 size_t total_size = frame_data_size; in FrameSize() local
356 total_size += handle_scope_size; // Handle scope size. in FrameSize()
360 total_size += SizeOfReturnValue(); in FrameSize()
362 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc284 size_t total_size = frame_data_size; in FrameSize() local
287 total_size += handle_scope_size; // handle scope size in FrameSize()
291 total_size += SizeOfReturnValue(); in FrameSize()
293 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc377 size_t total_size = frame_data_size; in FrameSize() local
380 total_size += handle_scope_size; // handle scope size in FrameSize()
384 total_size += SizeOfReturnValue(); in FrameSize()
386 return RoundUp(total_size, kStackAlignment); in FrameSize()
/art/compiler/utils/
Ddedupe_set-inl.h46 size_t total_size = 0u;
93 global_stats->total_size += keys_.size();
248 stats.total_size,
/art/libdexfile/dex/
Dtest_dex_file_builder.h166 uint32_t total_size = data_section_offset + data_section_size; in Build() local
168 dex_file_data_.resize(total_size); in Build()
/art/runtime/jit/
Djit_code_cache.cc1008 size_t total_size = header_size + code_size; in CommitCodeInternal() local
1012 nox_memory = AllocateCode(total_size); in CommitCodeInternal()
1059 cache_flush_success = FlushCpuCaches(nox_memory, nox_memory + total_size); in CommitCodeInternal()
1065 cache_flush_success = FlushCpuCaches(x_memory, x_memory + total_size); in CommitCodeInternal()
/art/tools/hiddenapi/
Dhiddenapi.cc759 void AllocateMemory(size_t total_size) { in AllocateMemory() argument
761 data_.resize(total_size); in AllocateMemory()
/art/oatdump/
Doatdump.cc2420 size_t total_size = dex_instruction_bytes + in DumpMethod() local
2425 stats_.ComputeOutliers(total_size, expansion, method); in DumpMethod()
2507 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) { in ComputeOutliers()
2508 method_outlier_size.push_back(total_size); in ComputeOutliers()
/art/runtime/gc/space/
Dimage_space.cc1873 size_t total_size = reservation_size + extra_reservation_size; in ReserveBootImageMemory() local
1879 total_size, in ReserveBootImageMemory()