Home
last modified time | relevance | path

Searched full:setw (Results 1 – 25 of 34) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/
Druntime_stat.cpp74 …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 …]
Dopt_code_profiler.cpp39 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/
Drelocator.cpp136 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/
Dpass_manager_statistics.cpp47 << 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 …]
Dpass_manager.cpp79 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/
Dcompiler_log.cpp114 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()
Dllvm_codegen.cpp310 … LOG_COMPILER(INFO) << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in PrintInstAndStep()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Ddump.cpp150 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/
Dget_ins_info.cpp.erb38 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/
Daotdump.cpp235 …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/
Dcflow_iterate_inl.h42 …LOG(DEBUG, VERIFIER) << "CFLOW: " << std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('…
/arkcompiler/runtime_core/verification/
Dmessages.yaml86 …${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/
Dassembler_aarch64_test.cpp107 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()
Dassembler_x64_test.cpp112 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/
Dbit_memory_region-inl.h38 … os << std::setw(static_cast<int>(width / BITS_PER_HEX_DIGIT)) << std::setfill('0'); in Dump()
Dbit_table.h447 out << std::right << std::setw(INDEX_WIDTH) << index++ << ": ";
450 out << std::left << std::setw(width[i]);
/arkcompiler/ets_runtime/ecmascript/
Ddump.cpp454 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/
Dtime_utils.cpp55 … result_stream << date_buffer << std::setfill('0') << std::setw(PRECISION_FOR_TIME) << millisecond; in GetCurrentTimeString()
Dtiming.cpp52 …ss << main_part << "." << std::setfill('0') << std::setw(FRACTION_WIDTH) << fractional_part << tim… in PrettyTimeNs()
Dstack_walker.cpp683 … 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/
Dbacktrace.cpp75 stack << std::endl << "#" << std::setw(ALIGN_WIDTH) << std::dec << i << ": " << in Backtrace()
/arkcompiler/runtime_core/disassembler/
Ddisassembler.cpp975 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/
Dinterpreter_impl.cpp89 std::cerr << std::hex << std::setw(sizeof(uintptr_t)) << std::setfill('0') in DebugDump()
Dinstruction_handler_base.h27 LOG(DEBUG, INTERPRETER) << std::hex << std::setw(sizeof(uintptr_t)) << std::setfill('0') \
/arkcompiler/runtime_core/verification/gen/templates/
Djob_fill_gen.h.erb21 …LOG(DEBUG, VERIFIER) << "JOBFILL: " << std::hex << std::setw(sizeof(inst.GetOffset())) << std::set…

12