/art/tools/dexanalyze/ |
D | dexanalyze_experiments.cc | 188 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 …]
|
D | dexanalyze_experiments.h | 60 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;
|
D | dexanalyze_strings.cc | 542 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 …]
|
D | dexanalyze_strings.h | 46 void Dump(std::ostream& os, uint64_t total_size) const override;
|
D | dexanalyze_bytecode.cc | 167 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()
|
D | dexanalyze_bytecode.h | 64 void Dump(std::ostream& os, uint64_t total_size) const;
|
/art/runtime/ |
D | mapping_table.h | 45 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/ |
D | calling_convention_mips64.cc | 194 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/ |
D | calling_convention_x86.cc | 230 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/ |
D | calling_convention_x86_64.cc | 212 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/ |
D | calling_convention_mips.cc | 353 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/ |
D | calling_convention_arm64.cc | 284 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/ |
D | calling_convention_arm.cc | 377 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/ |
D | dedupe_set-inl.h | 46 size_t total_size = 0u; 93 global_stats->total_size += keys_.size(); 248 stats.total_size,
|
/art/libdexfile/dex/ |
D | test_dex_file_builder.h | 166 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/ |
D | jit_code_cache.cc | 1008 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/ |
D | hiddenapi.cc | 759 void AllocateMemory(size_t total_size) { in AllocateMemory() argument 761 data_.resize(total_size); in AllocateMemory()
|
/art/oatdump/ |
D | oatdump.cc | 2420 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/ |
D | image_space.cc | 1873 size_t total_size = reservation_size + extra_reservation_size; in ReserveBootImageMemory() local 1879 total_size, in ReserveBootImageMemory()
|