Home
last modified time | relevance | path

Searched refs:COMPILER (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Dlogger_test.cpp96 component_mask.set(Logger::Component::COMPILER);
99 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER));
102 EXPECT_FALSE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER));
106 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1");
112 LOG(ERROR, COMPILER) << "c";
127 component_mask.set(Logger::Component::COMPILER);
130 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::FATAL, Logger::Component::COMPILER));
133 EXPECT_TRUE(Logger::IsLoggingOn(Logger::Level::ERROR, Logger::Component::COMPILER));
137 EXPECT_DEATH_IF_SUPPORTED(LOG(FATAL, COMPILER) << "d1", "\\[TID [0-9a-f]{6}\\] F/compiler: d1");
143 LOG(ERROR, COMPILER) << "c";
[all …]
/arkcompiler/runtime_core/compiler/
Dcompiler_logger.h70 …CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" …
76 …CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" …
/arkcompiler/ets_runtime/ecmascript/
Dlog_wrapper.h27 #define LOG_COMPILER(level) ARK_LOG(level, Component::COMPILER)
Dlog.h45 COMPILER = 1ULL << 2ULL, enumerator
90 case Component::COMPILER: in GetComponentStr()
Dlog.cpp171 components_ |= Component::COMPILER; in SetLogComponentFromString()
/arkcompiler/runtime_core/bytecode_optimizer/templates/
Dcodegen_intrinsics.cpp.erb41 LOG(ERROR,COMPILER) << "Unsupported intrinsic";
/arkcompiler/runtime_core/libpandabase/utils/
Dcframe_layout.h327 enum class FrameKind { NONE, INTERPRETER, COMPILER }; enumerator
341 struct BoundaryFrame<FrameKind::COMPILER> {
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dlinear_order.cpp41 LOG(FATAL, COMPILER) << "Unexpected `If` instruction: " << *if_inst; in HandleIfBlock()
/arkcompiler/runtime_core/compiler/optimizer/templates/
Dgenerate_ecma.inl.erb105 LOG(ERROR,COMPILER) << "Unsupported ecma opcode";
Dinst_builder_gen.cpp.erb243 … LOG(ERROR, COMPILER) << "Unknown ecma.* opcode: " << static_cast<int>(bc_inst->GetOpcode());
375 LOG(ERROR,COMPILER) << "unknown Ecma opcode!" << static_cast<int>(bc_inst->GetOpcode());
/arkcompiler/runtime_core/compiler/tests/
Dunit_test.h301 Logger::EnableComponent(Logger::Component::COMPILER);
/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.cpp643 panda::Logger::Component::COMPILER; in OptimizeProgram()
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp1452 mask.set(panda::Logger::Component::COMPILER); in EmitProgram()