| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_trace.h | 101 …LOG_TRACE(INFO) << std::left << std::setw(NAME_WIDTH) << name_ << std::right << std::setw(WIDTH) <… in Print() 102 … << std::setw(WIDTH) << codesize_ << std::setw(WIDTH) << hotness_ << std::setw(WIDTH) in Print() 103 … << count << std::fixed << std::setprecision(PRECISION) << std::setw(WIDTH) in Print() 104 << avgProfileBytecodeTime << std::setw(WIDTH) << totalTime; in Print() 146 …LOG_TRACE(INFO) << std::setw(NAME_WIDTH + WIDTH * (TOTAL_COLUMN - PROFILE_BYTECODE_TIME_COLUMN)) <… in Print() 147 … << std::right << std::setw(WIDTH * PROFILE_BYTECODE_TIME_COLUMN) << "Profile Bytecode Time(ms)"; in Print() 148 …LOG_TRACE(INFO) << std::left << std::setw(NAME_WIDTH) << "Name" << std::right << std::setw(WIDTH) … in Print() 149 … << std::setw(WIDTH) << "CodeSize" << std::setw(WIDTH) << "Hotness" << std::setw(WIDTH) in Print() 150 … << "Count" << std::setw(WIDTH) << "Avg(ms)" << std::setw(WIDTH) << "Total(ms)"; in Print() 155 …LOG_TRACE(INFO) << std::left << std::setw(NAME_WIDTH) << "MergeWithExistAP(ms) " << mergeWithExist… in Print() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/dfx/vmstat/ |
| D | runtime_stat.cpp | 72 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "InterPreter && GC && C++ Builti… in PrintAllStats() 73 … << std::setw(numberRightAdjustment) << "Time(ns)" << std::setw(numberRightAdjustment) << "Count" in PrintAllStats() 74 << std::setw(numberRightAdjustment) << "MaxTime(ns)" in PrintAllStats() 75 << std::setw(numberRightAdjustment) << "AvgTime(ns)"; in PrintAllStats() 110 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << runCallerStat.Name() in PrintAllStats() 111 << std::setw(numberRightAdjustment) << runCallerStat.TotalTime() in PrintAllStats() 112 << std::setw(numberRightAdjustment) << runCallerStat.TotalCount() in PrintAllStats() 113 << std::setw(numberRightAdjustment) << runCallerStat.MaxTime() in PrintAllStats() 114 << std::setw(numberRightAdjustment) in PrintAllStats() 120 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Interpreter Total Time(ns)" in PrintAllStats() [all …]
|
| D | opt_code_profiler.cpp | 41 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "Bytecode" in PrintAndReset() 42 << std::setw(numberRightAdjustment) << "bcIndex" in PrintAndReset() 43 << std::setw(numberRightAdjustment) << "Count" in PrintAndReset() 44 << std::setw(numberRightAdjustment) << "TypedPathCount" in PrintAndReset() 45 << std::setw(numberRightAdjustment) << "SlowPathCount" in PrintAndReset() 46 << std::setw(numberRightAdjustment + 1) << "TypedPathRate"; in PrintAndReset() 60 …LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << kungfu::GetEcmaOpcodeStr(it->fir… in PrintAndReset() 61 << std::setw(numberRightAdjustment) << "NA" in PrintAndReset() 62 << std::setw(numberRightAdjustment) << val.Count() in PrintAndReset() 63 << std::setw(numberRightAdjustment) << val.TypedPathCount() in PrintAndReset() [all …]
|
| D | function_call_timer.cpp | 87 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << "JS && TS Function Name" in PrintAllStats() 88 << std::setw(numberRightAdjustment) << "Type" in PrintAllStats() 89 … << std::setw(numberRightAdjustment) << "Time(ns)" << std::setw(numberRightAdjustment) << "Count" in PrintAllStats() 90 << std::setw(numberRightAdjustment) << "MaxTime(ns)" in PrintAllStats() 91 << std::setw(numberRightAdjustment) << "AvgTime(ns)"; in PrintAllStats() 111 LOG_ECMA(INFO) << std::right << std::setw(nameRightAdjustment) << stat.Name() in PrintAllStats() 112 << std::setw(numberRightAdjustment) << type in PrintAllStats() 113 << std::setw(numberRightAdjustment) << stat.TotalTime() in PrintAllStats() 114 << std::setw(numberRightAdjustment) << stat.TotalCount() in PrintAllStats() 115 << std::setw(numberRightAdjustment) << stat.MaxTime() in PrintAllStats() [all …]
|
| /arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
| D | mem_hooks.cpp | 72 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "alloc type"; in PandaAllocHook() 73 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "block type"; in PandaAllocHook() 74 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "size"; in PandaAllocHook() 75 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "filename"; in PandaAllocHook() 76 … std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "linenumber" << std::endl; in PandaAllocHook() 83 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << alloctypeName; in PandaAllocHook() 84 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << blocktypeName; in PandaAllocHook() 85 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << static_cast<int>(size); in PandaAllocHook() 86 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << filename; in PandaAllocHook() 87 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << linenumber << std::endl; in PandaAllocHook()
|
| /arkcompiler/runtime_core/compiler/optimizer/ |
| D | pass_manager_statistics.cpp | 45 << std::setw(OFFSET_ID) << std::right << "ID" << " " << std::left in PrintStatistics() 46 << std::setw(OFFSET_PASS_NAME) << "Pass Name" << ": " << std::right in PrintStatistics() 47 << std::setw(OFFSET_DEFAULT) << "IR mem" << std::right in PrintStatistics() 48 << std::setw(OFFSET_DEFAULT) << "Local mem" << std::right in PrintStatistics() 49 << std::setw(OFFSET_DEFAULT) << "Time,us" << std::endl; in PrintStatistics() 55 out << std::setw(OFFSET_ID) << std::right << index << space_buf << " " << std::left in PrintStatistics() 56 << std::setw(OFFSET_PASS_NAME - indent) << stat.pass_name << ": " << std::right in PrintStatistics() 57 << std::setw(OFFSET_DEFAULT) << stat.mem_used_ir << std::setw(OFFSET_DEFAULT) in PrintStatistics() 58 << stat.mem_used_local << std::setw(OFFSET_DEFAULT) << stat.time_us << std::endl; in PrintStatistics() 64 out << std::setw(OFFSET_TOTAL) << "TOTAL: " in PrintStatistics() [all …]
|
| D | pass_manager.cpp | 62 ss_filename << std::setw(IMM_3) << std::setfill('0') << execution_counter << "_"; in GetFileName() 64 …ss_filename << "pass_" << std::setw(IMM_4) << std::setfill('0') << stats_->GetCurrentPassIndex() <… in GetFileName()
|
| /arkcompiler/runtime_core/static_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 << spaceBuf << " " in PrintStatistics() 58 << std::left << std::setw(OFFSET_PASS_NAME - indent) << stat.passName << ": " in PrintStatistics() 59 … << std::right << std::setw(OFFSET_DEFAULT) << stat.memUsedIr << std::setw(OFFSET_DEFAULT) in PrintStatistics() 60 << stat.memUsedLocal << std::setw(OFFSET_DEFAULT) << stat.timeUs << std::endl; in PrintStatistics() 66 out << std::setw(OFFSET_TOTAL) << "TOTAL: " in PrintStatistics() [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | dump.cpp | 150 outString << "bc: 0x" << std::setfill('0') << std::setw(HEX_PTR_SIZE) << std::hex << pc; in PcToString() 194 (*out) << std::setw(INDENT_OPCODE) << opc + space + id + space + fieldName + space; in DumpTypedFieldOpcode() 202 (*out) << std::setw(INDENT_OPCODE) << opc + space + id + space; in DumpTypedOpcode() 211 (*out) << std::setw(INDENT_OPCODE) << opc + flags + space + id + space; in DumpTypedOpcode() 378 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 390 out << std::setw(INDENT_OPCODE) in DumpOpcodeAnyTypeMixin() 431 (*out) << std::setw(INDENT_OPCODE) in DumpOpcode() 457 (*out) << std::setw(INDENT_OPCODE) << summary; in DumpOpcode() 469 (*out) << std::setw(INDENT_OPCODE) << opcode + open + type + className + close; in DumpOpcode() 473 (*out) << std::setw(INDENT_OPCODE) << opcode + open + type + methodName + close; in DumpOpcode() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | compiler_log.cpp | 115 LOG_COMPILER(INFO) << std::setw(PASS_LENS) << name_ << " " << std::setw(METHOD_LENS) in ~TimeScope() 116 … << GetShortName(methodName_) << " offset:" << std::setw(OFFSET_LENS) << methodOffset_ in ~TimeScope() 117 … << " 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()
|
| /arkcompiler/runtime_core/static_core/disassembler/templates/ |
| D | get_ins_info.cpp.erb | 39 ss << "offset: 0x" << std::setfill('0') << std::setw(4) << std::hex 48 ss << std::setw(FORMAT_WIDTH) << std::left << "[<%= fmt.pretty.upcase %>]"; 61 …ss << "0x" << std::setw(INSTRUCTION_WIDTH) << std::setfill('0') << std::right << std::hex << stati…
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | get_ins_info.cpp.erb | 37 … ss << "offset: 0x" << std::setfill('0') << std::setw(ark::INSTRUCTION_OFFSET_WIDTH) << std::hex 46 … ss << std::setw(ark::INSTRUCTION_FORMAT_WIDTH) << std::left << "[<%= fmt.pretty.upcase %>]"; 59 …ss << "0x" << std::setw(ark::INSTRUCTION_VALUE_WIDTH) << std::setfill('0') << std::right << std::h…
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | file_format_version.h.erb | 71 std::cout << std::setw(WIDTH) << "api" << std::setw(WIDTH) << "file version" << std::endl; 76 std::cout << std::setw(WIDTH) << static_cast<uint32_t>(legal_api); 78 std::cout << std::setw(WIDTH) << GetVersion(file_version) << std::endl;
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/rawheap_translate/ |
| D | utils.h | 32 #define LOG_INFO_ Logger(0) << std::left << std::setw(24) << __func__ 33 #define LOG_ERROR_ Logger(1) << std::left << std::setw(24) << __func__ 67 std::cout << std::left << std::setw(8) << "[ERROR] " << ss.str() << std::endl; in ~Logger() 71 std::cout << std::left << std::setw(8) << "[INFO ] " << ss.str() << std::endl; in ~Logger()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/src/ |
| D | maple_phase_support.cpp | 65 …LogInfo::MapleLogger() << std::left << std::setw(25) << std::setfill(' ') << itemName << std::setw… in DumpPhasesTime() 67 … << (maplebe::kPercent * itemTimeUs / totalTimeUs) << "%" << std::setw(10) in DumpPhasesTime() 77 * output information by specified format, setw function parameter specifies show width in DumpPhasesTime()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | dump.cpp | 142 out_string << "bc: 0x" << std::setfill('0') << std::setw(HEX_PTR_SIZE) << std::hex << pc; in PcToString() 167 (*out) << std::setw(INDENT_OPCODE) << opc + space + id + space + field_name + space; in DumpTypedFieldOpcode() 175 (*out) << std::setw(INDENT_OPCODE) << opc + space + id; in DumpTypedOpcode() 300 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 312 out << std::setw(INDENT_OPCODE) << opcode + space + any_base_type + space; in DumpOpcodeAnyTypeMixin() 338 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 349 (*out) << std::setw(INDENT_OPCODE) << opcode + space + cc + space + type; in DumpOpcode() 358 …(*out) << std::setw(INDENT_OPCODE) << ArenaString(IsFcmpg() ? "Fcmpg" : "Fcmpl", adapter) + suffix; in DumpOpcode() 360 …(*out) << std::setw(INDENT_OPCODE) << ArenaString("Cmp", adapter) + ArenaString(" ", adapter) + su… in DumpOpcode() 362 (*out) << std::setw(INDENT_OPCODE) << ArenaString("Ucmp", adapter) + suffix; in DumpOpcode() [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/tools/aotdump/ |
| D | aotdump.cpp | 241 …(*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "i" << std::left << std::… in DumpClassHashTable() 242 << std::setw(ALIGN_SIZE) << "next_pos"; in DumpClassHashTable() 243 …(*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "entity_id_offset" << std… in DumpClassHashTable() 244 << std::setfill(' ') << std::setw(ALIGN_SIZE) << "descriptor" << std::endl; in DumpClassHashTable() 251 (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1); in DumpClassHashTable() 252 …(*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) << entityPair.ne… in DumpClassHashTable() 253 (*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) in DumpClassHashTable() 255 … (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << descriptor << std::endl; in DumpClassHashTable() 257 … (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1) << std::endl; in DumpClassHashTable() 345 …(*stream_) << prefix << std::hex << std::setw(8U) << std::setfill('0') << instr - startInstr << ":… in PrintCodeArm64() [all …]
|
| /arkcompiler/runtime_core/abc2program/ |
| D | program_dump.cpp | 352 os << DUMP_CONTENT_TAB << std::setw(LINE_WIDTH) in DumpOriginalFunctionIns() 355 os << std::setw(COLUMN_WIDTH) << std::left << DUMP_CONTENT_SPACE in DumpOriginalFunctionIns() 396 os << DUMP_CONTENT_TAB << std::setw(LINE_WIDTH) in DumpFinalIns() 399 os << std::setw(COLUMN_WIDTH) << std::left << DUMP_CONTENT_SPACE in DumpFinalIns() 518 … << std::setw(START_WIDTH) << std::right << variable_info.start << DUMP_CONTENT_TRIPLE_SPACES; in DumpFunctionDebugInfo() 519 … os << std::setw(END_WIDTH) << std::right << variable_info.length << DUMP_CONTENT_DOUBLE_SPACES; in DumpFunctionDebugInfo() 520 os << std::setw(REG_WIDTH) << std::right << variable_info.reg << DUMP_CONTENT_DOUBLE_SPACES; in DumpFunctionDebugInfo() 521 os << std::setw(NAME_WIDTH) in DumpFunctionDebugInfo()
|
| /arkcompiler/runtime_core/static_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/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()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
| D | printing.cpp | 62 … LogInfo::MapleLogger() << "\\x" << std::hex << std::setfill('0') << std::setw(kFieldWidth) in PrintString()
|
| /arkcompiler/runtime_core/static_core/verification/ |
| D | messages.yaml | 85 …${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << address << std::dec << std::… 93 ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0')} 95 (scope is [${try_block_start}, ${try_block_end}]).${std::dec << std::setw(0)} 137 …ABSINT: ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << instruction.GetOffse…
|
| /arkcompiler/runtime_core/static_core/libpandabase/utils/ |
| D | bit_memory_region-inl.h | 30 os << std::setw(width) << std::setfill('0'); in DumpVal()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | time_utils.cpp | 55 resultStream << dateBuffer << std::setfill('0') << std::setw(PRECISION_FOR_TIME) << millisecond; in GetCurrentTimeString()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/ |
| D | assembler_aarch64_test.cpp | 101 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk() 108 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
|