Searched refs:COMPILER (Results 1 – 13 of 13) sorted by relevance
/arkcompiler/runtime_core/libpandabase/tests/ |
D | logger_test.cpp | 96 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/ |
D | compiler_logger.h | 70 …CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" … 76 …CompilerLogger::IsComponentEnabled(CompilerLoggerComponents::comp) && LOG(level, COMPILER) << "[" …
|
/arkcompiler/ets_runtime/ecmascript/ |
D | log_wrapper.h | 27 #define LOG_COMPILER(level) ARK_LOG(level, Component::COMPILER)
|
D | log.h | 45 COMPILER = 1ULL << 2ULL, enumerator 90 case Component::COMPILER: in GetComponentStr()
|
D | log.cpp | 171 components_ |= Component::COMPILER; in SetLogComponentFromString()
|
/arkcompiler/runtime_core/bytecode_optimizer/templates/ |
D | codegen_intrinsics.cpp.erb | 41 LOG(ERROR,COMPILER) << "Unsupported intrinsic";
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | cframe_layout.h | 327 enum class FrameKind { NONE, INTERPRETER, COMPILER }; enumerator 341 struct BoundaryFrame<FrameKind::COMPILER> {
|
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
D | linear_order.cpp | 41 LOG(FATAL, COMPILER) << "Unexpected `If` instruction: " << *if_inst; in HandleIfBlock()
|
/arkcompiler/runtime_core/compiler/optimizer/templates/ |
D | generate_ecma.inl.erb | 105 LOG(ERROR,COMPILER) << "Unsupported ecma opcode";
|
D | inst_builder_gen.cpp.erb | 243 … 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/ |
D | unit_test.h | 301 Logger::EnableComponent(Logger::Component::COMPILER);
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | helpers.cpp | 643 panda::Logger::Component::COMPILER; in OptimizeProgram()
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 1452 mask.set(panda::Logger::Component::COMPILER); in EmitProgram()
|