Changeset 244204 in webkit for trunk/Source/JavaScriptCore/jit/ICStats.cpp
- Timestamp:
- Apr 11, 2019, 5:53:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/ICStats.cpp
r215265 r244204 41 41 if (m_propertyName != other.m_propertyName) 42 42 return codePointCompare(m_propertyName.string(), other.m_propertyName.string()) < 0; 43 44 return m_kind < other.m_kind; 43 44 if (m_kind != other.m_kind) 45 return m_kind < other.m_kind; 46 47 return m_propertyLocation < other.m_propertyLocation; 45 48 } 46 49 … … 48 51 { 49 52 out.print(m_kind, "(", m_classInfo ? m_classInfo->className : "<null>", ", ", m_propertyName, ")"); 53 if (m_propertyLocation != Unknown) 54 out.print(m_propertyLocation == BaseObject ? " self" : " proto lookup"); 50 55 } 51 56
Note:
See TracChangeset
for help on using the changeset viewer.