Home
last modified time | relevance | path

Searched refs:ICKindToString (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dprofile_type_info_test.cpp57 HWTEST_F_L0(ProfileTypeInfoTest, ICKindToString) in HWTEST_F_L0() argument
59 EXPECT_STREQ(CString(ICKindToString(ICKind::NamedLoadIC)).c_str(), "NamedLoadIC"); in HWTEST_F_L0()
60 EXPECT_STREQ(CString(ICKindToString(ICKind::LoadIC)).c_str(), "LoadIC"); in HWTEST_F_L0()
61 EXPECT_STREQ(CString(ICKindToString(ICKind::NamedGlobalLoadIC)).c_str(), "NamedGlobalLoadIC"); in HWTEST_F_L0()
62 EXPECT_STREQ(CString(ICKindToString(ICKind::GlobalLoadIC)).c_str(), "GlobalLoadIC"); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/ic/
Dprofile_type_info.h84 std::string ICKindToString(ICKind kind);
Dprofile_type_info.cpp201 std::string ICKindToString(ICKind kind) in ICKindToString() function
Dic_runtime.cpp160 auto kind = ICKindToString(GetICKind()); in TraceIC()