/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/x86/ |
D | calling_convention_x86.cc | 213 size_t total_size = method_ptr_size + pc_return_addr_size + callee_save_area_size; in FrameSize() local 227 total_size += padding; in FrameSize() 228 total_size += SizeOfReturnValue(); in FrameSize() 231 return RoundUp(total_size, kStackAlignment); in FrameSize()
|
/art/runtime/jit/ |
D | jit_memory_region.cc | 361 size_t total_size = header_size + code.size(); in CommitCode() local 366 DCHECK_GT(total_size, header_size); in CommitCode() 367 DCHECK_LE(total_size, reserved_code.size()); in CommitCode() 403 cache_flush_success = FlushCpuCaches(w_memory, w_memory + total_size); in CommitCode() 408 cache_flush_success = FlushCpuCaches(x_memory, x_memory + total_size); in CommitCode()
|
/art/compiler/jni/quick/arm/ |
D | calling_convention_arm.cc | 411 size_t total_size = method_ptr_size + callee_save_area_size; in FrameSize() local 425 total_size += padding; in FrameSize() 426 total_size += SizeOfReturnValue(); in FrameSize() 429 return RoundUp(total_size, kStackAlignment); in FrameSize()
|
/art/compiler/jni/quick/x86_64/ |
D | calling_convention_x86_64.cc | 201 size_t total_size = method_ptr_size + pc_return_addr_size + callee_save_area_size; in FrameSize() local 210 total_size += SizeOfReturnValue(); in FrameSize() 213 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/compiler/jni/quick/arm64/ |
D | calling_convention_arm64.cc | 258 size_t total_size = method_ptr_size + callee_save_area_size; in FrameSize() local 267 total_size += SizeOfReturnValue(); in FrameSize() 270 return RoundUp(total_size, kStackAlignment); in FrameSize()
|
/art/tools/jvmti-agents/field-counts/ |
D | fieldcount.cc | 127 size_t total_size = 0; in DataDumpRequestCb() local 172 total_size += static_cast<size_t>(size); in DataDumpRequestCb() 184 << "\t" << total_size; in DataDumpRequestCb()
|
/art/libdexfile/dex/ |
D | test_dex_file_builder.h | 164 uint32_t total_size = data_section_offset + data_section_size; variable 165 std::vector<uint8_t> dex_file_data(total_size, 0u);
|
/art/compiler/utils/arm/ |
D | jni_macro_assembler_arm_vixl.cc | 635 uint32_t total_size = in MoveArguments() local 639 IsAligned<kDRegSizeInBytes>(total_size)) { in MoveArguments() 640 uint32_t dreg_count = total_size / kDRegSizeInBytes; in MoveArguments() 644 uint32_t sreg_count = total_size / kSRegSizeInBytes; in MoveArguments()
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 782 void AllocateMemory(size_t total_size) { in AllocateMemory() argument 784 data_.resize(total_size); in AllocateMemory()
|
/art/oatdump/ |
D | oatdump.cc | 2174 size_t total_size = dex_instruction_bytes + in DumpMethod() local 2179 stats_.ComputeOutliers(total_size, expansion, method); in DumpMethod() 2222 void ComputeOutliers(size_t total_size, double expansion, ArtMethod* method) { in ComputeOutliers() 2223 method_outlier_size.push_back(total_size); in ComputeOutliers()
|