/arkcompiler/runtime_core/static_core/runtime/tooling/sampler/ |
H A D | stack_walker_base.cpp | 31 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in GetTopFrameFromFp() 32 return CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp)); in GetTopFrameFromFp() 59 ASSERT(GetBoundaryFrameMethod<FrameKind::COMPILER>(prev) != FrameBridgeKind::BYPASS); in CreateCFrameForC2IBridge() 70 auto frameMethod = GetBoundaryFrameMethod<FrameKind::COMPILER>(prev); in NextFromCFrame() 73 auto prevFrame = reinterpret_cast<Frame *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev)); in NextFromCFrame() 82 auto prevFrame = reinterpret_cast<Frame *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev)); in NextFromCFrame() 87 frame_ = CreateCFrame(reinterpret_cast<SlotType *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev))); in NextFromCFrame() 105 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in NextFromIFrame() 106 frame_ = CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp)); in NextFromIFrame()
|
/arkcompiler/runtime_core/static_core/irtoc/backend/ |
H A D | dwarf_builder.cpp | 69 LOG(FATAL, COMPILER) << "Dwarf initialization failed: " << dwarf_errmsg(error); in DwarfBuilder() 74 LOG(FATAL, COMPILER) << "dwarf_pro_set_default_string_form failed: " << dwarf_errmsg(error); in DwarfBuilder() 79 LOG(FATAL, COMPILER) << "dwarf_new_die failed: " << dwarf_errmsg(error); in DwarfBuilder() 84 LOG(FATAL, COMPILER) << "dwarf_add_AT_producer failed: " << dwarf_errmsg(error); in DwarfBuilder() 89 LOG(FATAL, COMPILER) << "dwarf_add_die_to_debug_a failed: " << dwarf_errmsg(error); in DwarfBuilder() 96 LOG(FATAL, COMPILER) << "DW_AT_language failed: " << dwarf_errmsg(error); in DwarfBuilder() 108 LOG(FATAL, COMPILER) << "dwarf_lne_set_address failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 125 LOG(ERROR, COMPILER) << "dwarf_add_line_entry failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 132 LOG(ERROR, COMPILER) << "dwarf_lne_end_sequence failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 138 LOG(ERROR, COMPILER) << "dwarf_add_AT_targ_address_ in BuildGraphNestedFunction() [all...] |
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | stack_walker.cpp | 61 if (GetBoundaryFrameMethod<FrameKind::COMPILER>(bp) == BYPASS) { in GetTopFrameFromFp() 62 return CreateCFrame(GetPrevFromBoundary<FrameKind::COMPILER>(bp), in GetTopFrameFromFp() 63 GetReturnAddressFromBoundary<FrameKind::COMPILER>(bp), in GetTopFrameFromFp() 64 GetCalleeStackFromBoundary<FrameKind::COMPILER>(bp)); in GetTopFrameFromFp() 105 ASSERT(GetBoundaryFrameMethod<FrameKind::COMPILER>(prev) != FrameBridgeKind::BYPASS); in CreateCFrameForC2IBridge() 377 auto frameMethod = GetBoundaryFrameMethod<FrameKind::COMPILER>(prev); in NextFromCFrame() 380 auto prevFrame = reinterpret_cast<Frame *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev)); in NextFromCFrame() 390 auto prevFrame = reinterpret_cast<Frame *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev)); in NextFromCFrame() 395 frame_ = CreateCFrame(reinterpret_cast<SlotType *>(GetPrevFromBoundary<FrameKind::COMPILER>(prev)), in NextFromCFrame() 396 GetReturnAddressFromBoundary<FrameKind::COMPILER>(pre in NextFromCFrame() [all...] |
H A D | compiler_thread_pool_worker.cpp | 33 LOG(ERROR, COMPILER) << "Cannot create a compiler queue"; in CompilerThreadPoolWorker() 50 LOG(DEBUG, COMPILER) << "Creating " << queueType << " task queue"; in CreateJITTaskQueue() 61 LOG(FATAL, COMPILER) << "Unknown queue type"; in CreateJITTaskQueue()
|
H A D | osr.cpp | 48 case FrameKind::COMPILER: in WriteOsrEventError() 84 case FrameKind::COMPILER: in OsrEntry()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | logger_test.cpp | 99 component_mask.set(Logger::Component::COMPILER); in HWTEST_F() 102 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER)); in HWTEST_F() 105 EXPECT_FALSE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER)); in HWTEST_F() 109 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1"); in HWTEST_F() 115 LOG(ERROR, COMPILER) << "c"; in HWTEST_F() 130 component_mask.set(Logger::Component::COMPILER); in HWTEST_F() 133 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER)); in HWTEST_F() 136 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER)); in HWTEST_F() 140 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1"); in HWTEST_F() 146 LOG(ERROR, COMPILER) << " in HWTEST_F() [all...] |
/arkcompiler/runtime_core/static_core/compiler/ |
H A D | compile_method.cpp | 115 LOG(WARNING, COMPILER) in CheckSingleImplementation() 170 LOG(INFO, COMPILER) << "Compilation failed due to memory allocation fail: " << methodName; in GetEntryPoint() 174 LOG(INFO, COMPILER) << "Compiled code for '" << methodName << "' has been installed to " in GetEntryPoint() 192 LOG(DEBUG, COMPILER) << "The method " << compilerCtx.GetMethodName() << " is compiled"; in RunOptimizations() 196 LOG(FATAL, COMPILER) << "RunOptimizations failed!"; in RunOptimizations() 198 LOG(WARNING, COMPILER) << "RunOptimizations failed!"; in RunOptimizations() 278 LOG(DEBUG, COMPILER) << "Skip the method due to regexp mismatch: " in JITCompileMethod() 325 LOG(INFO, COMPILER) << "Compile method" << (isOsr ? "(OSR)" : "") << ": " << methodName << " (" in CompileInGraph() 329 LOG(DEBUG, COMPILER) << "Compilation unsupported for this platform!"; in CompileInGraph() 340 LOG(ERROR, COMPILER) << "Creatin in CompileInGraph() [all...] |
H A D | compiler_logger.h | 68 CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" #comp "] " 71 CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG_IF(cond, level, COMPILER) \
|
H A D | compiler_options.h | 63 LOG(FATAL, COMPILER) << "'SetCompilerRegexWithSignature()' is not supported."; in SetCompilerRegexWithSignature() 81 LOG(FATAL, COMPILER) in MatchesRegex()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | logger_test.cpp | 91 componentMask.set(Logger::Component::COMPILER); in DEATH_TEST() 94 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER)); in DEATH_TEST() 97 EXPECT_FALSE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER)); in DEATH_TEST() 101 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1"); in DEATH_TEST() 107 LOG(ERROR, COMPILER) << "c"; in DEATH_TEST() 122 componentMask.set(Logger::Component::COMPILER); in DEATH_TEST() 125 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER)); in DEATH_TEST() 128 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER)); in DEATH_TEST() 132 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1"); in DEATH_TEST() 138 LOG(ERROR, COMPILER) << " in DEATH_TEST() [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/ |
H A D | pipeline.cpp | 123 LOG(WARNING, COMPILER) << "Compiler detected incorrect monitor policy"; in Run() 141 LOG(FATAL, COMPILER) << "RunOptimizations failed: predicted code size is too big (" << estimatedSize << ")"; in RunRegAllocAndCodeGenPass() 151 LOG(FATAL, COMPILER) << "RunOptimizations failed: code generation error"; in RunRegAllocAndCodeGenPass() 159 LOG(FATAL, COMPILER) << "RunOptimizations failed: register allocation error"; in RunRegAllocAndCodeGenPass() 191 LOG(WARNING, COMPILER) << "Compiler detected incorrect monitor policy"; in RunOptimizations()
|
/arkcompiler/runtime_core/compiler/ |
H A D | compiler_logger.h | 70 CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" #comp "] " 76 CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" #comp "] "
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | log_wrapper.h | 27 #define LOG_COMPILER(level) ARK_LOG(level, Component::COMPILER)
|
H A D | log.h | 55 COMPILER = 1ULL << 2ULL, enumerator 106 case Component::COMPILER: in GetComponentStr()
|
H A D | log.cpp | 171 components_ |= Component::COMPILER; in SetLogComponentFromString()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | disassembly.cpp | 73 LOG(FATAL, COMPILER) << "Cannot open 'disasm.txt'"; in Init() 88 LOG(FATAL, COMPILER) << "Cannot open '" << ss.str() << "'"; in Init()
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | llvm_aot_builder.cpp | 33 LOG(ERROR, COMPILER) << "LLVMAotBuilder: Unsupported arch"; in GetSectionsAddresses()
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
H A D | paoc_llvm.cpp | 23 #define LOG_PAOC(level) LOG(level, COMPILER) << "PAOC: "
|
H A D | paoc.cpp | 42 #define LOG_PAOC(level) LOG(level, COMPILER) << "PAOC: " 335 LOG(FATAL, COMPILER) << "Cannot open profile `" << compiler::g_options.GetCompilerProfile() in Run() 387 LOG(DEBUG, COMPILER) << "PAOC: ClassContext '" << classCtx << '\''; in RunAotMode() 759 LOG(INFO, COMPILER) << "Emit code failed"; in FinalizeCompileAot() 763 LOG(INFO, COMPILER) << "Ark AOT successfully compiled method: " << runtime_->GetMethodFullName(ctx->method, false); in FinalizeCompileAot() 795 LOG_IF(IsLLVMAotMode() && !paocOptions_->IsPaocUseCha(), FATAL, COMPILER) in CompileAot() local
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | cframe_layout.h | 329 enum class FrameKind { NONE, INTERPRETER, COMPILER }; 343 struct BoundaryFrame<FrameKind::COMPILER> {
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | cframe_layout.h | 324 enum class FrameKind { NONE, INTERPRETER, COMPILER }; 338 struct BoundaryFrame<FrameKind::COMPILER> {
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
H A D | reg_alloc.cpp | 110 LOG(WARNING, COMPILER) << "RA graph coloring algorithm failed. Linear scan will be used."; in RegAlloc()
|
/arkcompiler/runtime_core/static_core/compiler/tools/debug/ |
H A D | jit_writer.cpp | 101 LOG(ERROR, COMPILER) << "JitDebug: Unsupported arch"; in Write()
|
/arkcompiler/ets_frontend/ets2panda/util/ |
H A D | generateBin.cpp | 28 componentMask.set(ark::Logger::Component::COMPILER); in InitializeLogging()
|
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
H A D | linear_order.cpp | 41 LOG(FATAL, COMPILER) << "Unexpected `If` instruction: " << *if_inst; in HandleIfBlock()
|