| /arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
| D | runtime_stat.cpp | 74 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "InterPreter && GC && C++ Builti… in PrintAllStats() 75 … << std::setw(numberRightAdjustment) << "Time(ns)" << std::setw(numberRightAdjustment) << "Count" in PrintAllStats() 76 << std::setw(numberRightAdjustment) << "MaxTime(ns)" in PrintAllStats() 77 << std::setw(numberRightAdjustment) << "AvgTime(ns)"; in PrintAllStats() 112 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << runCallerStat.Name() in PrintAllStats() 113 << std::setw(numberRightAdjustment) << runCallerStat.TotalTime() in PrintAllStats() 114 << std::setw(numberRightAdjustment) << runCallerStat.TotalCount() in PrintAllStats() 115 << std::setw(numberRightAdjustment) << runCallerStat.MaxTime() in PrintAllStats() 116 << std::setw(numberRightAdjustment) in PrintAllStats() 122 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Interpreter Total Time(ns)" in PrintAllStats() [all …]
|
| D | opt_code_profiler.cpp | 39 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Bytecode" in ~OptCodeProfiler() 40 << std::setw(numberRightAdjustment) << "Count" in ~OptCodeProfiler() 41 << std::setw(numberRightAdjustment) << "TypedPathCount" in ~OptCodeProfiler() 42 << std::setw(numberRightAdjustment) << "SlowPathCount" in ~OptCodeProfiler() 43 << std::setw(numberRightAdjustment + 1) << "TypedPathRate"; in ~OptCodeProfiler() 57 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->fir… in ~OptCodeProfiler() 58 << std::setw(numberRightAdjustment) << val.Count() in ~OptCodeProfiler() 59 << std::setw(numberRightAdjustment) << val.TypedPathCount() in ~OptCodeProfiler() 60 << std::setw(numberRightAdjustment) << val.SlowPathCount() in ~OptCodeProfiler() 61 … << std::setw(numberRightAdjustment) << val.TypedPathCount() * hundred / val.Count() << "%"; in ~OptCodeProfiler() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
| D | relocator.cpp | 136 LOG_COMPILER(DEBUG) << std::left << std::setw(leftAdjustment) << "symbolId " in DumpRelocateText() 137 << std::left << std::setw(leftAdjustment) << "Info(0x): " in DumpRelocateText() 138 << std::left << std::setw(leftAdjustment) << "Type: " in DumpRelocateText() 139 << std::left << std::setw(leftAdjustment) << "r_offset(0x): " in DumpRelocateText() 140 << std::left << std::setw(leftAdjustment) << "addend: "; in DumpRelocateText() 146 LOG_COMPILER(DEBUG) << std::left << std::setw(leftAdjustment) << id in DumpRelocateText() 147 << std::left << std::setw(leftAdjustment) << std::hex << cur->r_info in DumpRelocateText() 148 << std::left << std::setw(leftAdjustment) << std::dec << type in DumpRelocateText() 149 … << std::left << std::setw(leftAdjustment) << std::hex << static_cast<intptr_t>(cur->r_offset) in DumpRelocateText() 150 … << std::left << std::setw(leftAdjustment) << std::dec << static_cast<intptr_t>(addend); in DumpRelocateText() [all …]
|
| /arkcompiler/runtime_core/compiler/optimizer/ |
| D | pass_manager_statistics.cpp | 47 << std::setw(OFFSET_ID) << std::right << "ID" << " " << std::left in PrintStatistics() 48 << std::setw(OFFSET_PASS_NAME) << "Pass Name" << ": " << std::right in PrintStatistics() 49 << std::setw(OFFSET_DEFAULT) << "IR mem" << std::right in PrintStatistics() 50 << std::setw(OFFSET_DEFAULT) << "Local mem" << std::right in PrintStatistics() 51 << std::setw(OFFSET_DEFAULT) << "Time,us" << std::endl; in PrintStatistics() 57 …out << std::setw(OFFSET_ID) << std::right << index << space_buf << " " << std::left << std::setw(O… in PrintStatistics() 58 …<< stat.pass_name << ": " << std::right << std::setw(OFFSET_DEFAULT) << stat.mem_used_ir << std::s… in PrintStatistics() 59 << stat.mem_used_local << std::setw(OFFSET_DEFAULT) << stat.time_us << std::endl; in PrintStatistics() 65 out << std::setw(OFFSET_TOTAL) << "TOTAL: " in PrintStatistics() 66 << std::right << std::setw(OFFSET_DEFAULT) << graph_->GetAllocator()->GetAllocatedSize() in PrintStatistics() [all …]
|
| D | pass_manager.cpp | 79 ss_filename << std::setw(IMM_3) << std::setfill('0') << execution_counter << "_"; in GetFileName() 81 …ss_filename << "pass_" << std::setw(IMM_4) << std::setfill('0') << stats_->GetCurrentPassIndex() <… in GetFileName()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | compiler_log.cpp | 114 LOG_COMPILER(INFO) << std::setw(PASS_LENS) << name_ << " " << std::setw(METHOD_LENS) in ~TimeScope() 115 … << GetShortName(methodName_) << " offset:" << std::setw(OFFSET_LENS) << methodOffset_ in ~TimeScope() 116 … << " time used:" << std::setw(TIME_LENS) << timeUsed_ / MILLION_TIME << "ms"; in ~TimeScope() 155 … LOG_COMPILER(INFO) << std::setw(PASS_LENS) << val << " Total cost time is "<< std::setw(TIME_LENS) in PrintPassTime() 175 LOG_COMPILER(INFO) << "method:" << std::setw(METHOD_LENS) << val.second in PrintMethodTime() 176 … << " offset:" << std::setw(OFFSET_LENS) << val.first << " all pass cost time is " in PrintMethodTime() 177 … << std::setw(TIME_LENS) << key / MILLION_TIME << "ms " << "percentage:" << std::fixed in PrintMethodTime() 180 …LOG_COMPILER(INFO) << "total compile time is " << std::setw(TIME_LENS) << methodTotalTime / MILLIO… in PrintMethodTime() 196 LOG_COMPILER(INFO) << " method: " << std::setw(METHOD_LENS) << it->first in PrintCompiledMethod() 197 << " in record: " << std::setw(RECORD_LENS) << it->second in PrintCompiledMethod()
|
| D | llvm_codegen.cpp | 310 … LOG_COMPILER(INFO) << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in PrintInstAndStep()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | dump.cpp | 150 out_string << "bc: 0x" << std::setfill('0') << std::setw(HEX_PTR_SIZE) << std::hex << pc; in PcToString() 189 (*out) << std::setw(INDENT_OPCODE) << opc + space + id + space + field_name + space; in DumpTypedFieldOpcode() 197 (*out) << std::setw(INDENT_OPCODE) << opc + space + id; in DumpTypedOpcode() 353 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 365 out << std::setw(INDENT_OPCODE) << opcode + space + any_base_type + space; in DumpOpcodeAnyTypeMixin() 390 (*out) << std::setw(INDENT_OPCODE) << opcode + space + any_base_type + space; in DumpOpcode() 400 (*out) << std::setw(INDENT_OPCODE) << opcode + open + class_name + close; in DumpOpcode() 411 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 422 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 433 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() [all …]
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | get_ins_info.cpp.erb | 38 ss << "offset: 0x" << std::setfill('0') << std::setw(4) << std::hex 47 ss << std::setw(FORMAT_WIDTH) << std::left << "[<%= fmt.pretty.upcase %>]"; 60 …ss << "0x" << std::setw(INSTRUCTION_WIDTH) << std::setfill('0') << std::right << std::hex << stati…
|
| /arkcompiler/runtime_core/compiler/tools/aotdump/ |
| D | aotdump.cpp | 235 …stream << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "i" << std::left << std::setf… in DumpClassHashTable() 236 << std::setw(ALIGN_SIZE) << "next_pos"; in DumpClassHashTable() 237 …stream << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "entity_id_offset" << std::le… in DumpClassHashTable() 238 << std::setfill(' ') << std::setw(ALIGN_SIZE) << "descriptor" << std::endl; in DumpClassHashTable() 245 stream << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1); in DumpClassHashTable() 246 …stream << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) << entity_pair.next_… in DumpClassHashTable() 247 stream << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) in DumpClassHashTable() 249 … stream << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << descriptor << std::endl; in DumpClassHashTable() 251 … stream << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1) << std::endl; in DumpClassHashTable() 335 … stream << prefix << std::hex << std::setw(8U) << std::setfill('0') << instr - start_instr << ": " in PrintCodeArm64() [all …]
|
| /arkcompiler/runtime_core/verification/cflow/ |
| D | cflow_iterate_inl.h | 42 …LOG(DEBUG, VERIFIER) << "CFLOW: " << std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('…
|
| /arkcompiler/runtime_core/verification/ |
| D | messages.yaml | 86 …${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << address << std::dec << std::… 94 ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0')} 96 (try block scope is [${try_block_start}, ${try_block_end}]).${std::dec << std::setw(0)} 138 …ABSINT: ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << instruction.GetOffse…
|
| /arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/ |
| D | assembler_aarch64_test.cpp | 107 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk() 114 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
|
| D | assembler_x64_test.cpp | 112 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk() 119 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | bit_memory_region-inl.h | 38 … os << std::setw(static_cast<int>(width / BITS_PER_HEX_DIGIT)) << std::setfill('0'); in Dump()
|
| D | bit_table.h | 447 out << std::right << std::setw(INDEX_WIDTH) << index++ << ": "; 450 out << std::left << std::setw(width[i]);
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | dump.cpp | 454 os << std::right << std::setw(DUMP_PROPERTY_OFFSET) << i << ": "; in DumpArrayClass() 469 os << std::right << std::setw(DUMP_PROPERTY_OFFSET) << i << ": "; in DumpConstantPoolClass() 498 os << "JSHClass :" << std::setw(DUMP_TYPE_OFFSET); in DumpHClass() 501 os << " - Prototype :" << std::setw(DUMP_TYPE_OFFSET); in DumpHClass() 504 os << " - PropertyDescriptors :" << std::setw(DUMP_TYPE_OFFSET); in DumpHClass() 512 os << " - Transitions :" << std::setw(DUMP_TYPE_OFFSET); in DumpHClass() 520 os << " - Flags : " << std::setw(DUMP_TYPE_OFFSET); in DumpHClass() 534 os << "JSHClass :" << std::setw(DUMP_TYPE_OFFSET) << " klass_(" << std::hex << hclass << ")\n"; in DumpClass() 1065 os << std::left << std::setw(DUMP_TYPE_OFFSET) << "[" + string + "]"; in DumpHeapObjectType() 1072 os << std::left << std::setw(DUMP_TYPE_OFFSET) in DumpHeapObjectType() [all …]
|
| /arkcompiler/runtime_core/runtime/ |
| D | time_utils.cpp | 55 … result_stream << date_buffer << std::setfill('0') << std::setw(PRECISION_FOR_TIME) << millisecond; in GetCurrentTimeString()
|
| D | timing.cpp | 52 …ss << main_part << "." << std::setfill('0') << std::setw(FRACTION_WIDTH) << fractional_part << tim… in PrettyTimeNs()
|
| D | stack_walker.cpp | 683 … os << std::setw(WIDTH_INDEX) << std::setfill(' ') << std::right << std::dec << frame_index << ": " in Dump() 685 os << std::setw(WIDTH_FRAME) << std::hex; in Dump() 691 os << " " << std::setw(WIDTH_REG) << std::setfill(' ') << std::right in Dump() 698 os << std::setw(WIDTH_TYPE) << std::setfill(' '); in Dump() 727 … os << std::setw(WIDTH_LOCATION) << std::setfill(' ') << reg_info.GetTypeString(); // NOLINT in Dump()
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/ohos/ |
| D | backtrace.cpp | 75 stack << std::endl << "#" << std::setw(ALIGN_WIDTH) << std::dec << i << ": " << in Backtrace()
|
| /arkcompiler/runtime_core/disassembler/ |
| D | disassembler.cpp | 975 ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetRecordInfo() 976 …<< class_accessor.GetClassId() << ", size: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WI… in GetRecordInfo() 983 ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetRecordInfo() 999 ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetMethodInfo() 1003 … ss << ", code offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetMethodInfo() 1335 …os << std::setw(INFO_OFFSET) << std::left << ss.str() << " # " << rec_inf.fields_info.at(field_idx… in SerializeFields() 1384 …os << "\t" << std::setw(width) << std::left << method.ins.at(i).ToString("", true, method.regs_num… in Serialize() 1534 os << "#\t " << std::setw(START_WIDTH) << std::right << variable_info.start_offset << " "; in SerializeLocalVariableTable() 1535 os << std::setw(END_WIDTH) << std::right << variable_info.end_offset << " "; in SerializeLocalVariableTable() 1536 os << std::setw(REG_WIDTH) << std::right << reg_stream.str() << " "; in SerializeLocalVariableTable() [all …]
|
| /arkcompiler/runtime_core/runtime/interpreter/ |
| D | interpreter_impl.cpp | 89 std::cerr << std::hex << std::setw(sizeof(uintptr_t)) << std::setfill('0') in DebugDump()
|
| D | instruction_handler_base.h | 27 LOG(DEBUG, INTERPRETER) << std::hex << std::setw(sizeof(uintptr_t)) << std::setfill('0') \
|
| /arkcompiler/runtime_core/verification/gen/templates/ |
| D | job_fill_gen.h.erb | 21 …LOG(DEBUG, VERIFIER) << "JOBFILL: " << std::hex << std::setw(sizeof(inst.GetOffset())) << std::set…
|