Changeset 261569 in webkit for trunk/Source/JavaScriptCore/yarr
- Timestamp:
- May 12, 2020, 12:13:18 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/yarr/YarrJIT.cpp
r261464 r261569 70 70 71 71 template<YarrJITCompileMode compileMode> 72 class YarrGenerator : public YarrJITInfo, private MacroAssembler {72 class YarrGenerator final : public YarrJITInfo, private MacroAssembler { 73 73 74 74 #if CPU(ARM_THUMB2) … … 3983 3983 } 3984 3984 3985 const char* variant() override3985 const char* variant() final 3986 3986 { 3987 3987 if (compileMode == MatchOnly) { … … 3998 3998 } 3999 3999 4000 unsigned opCount() override4000 unsigned opCount() final 4001 4001 { 4002 4002 return m_ops.size(); 4003 4003 } 4004 4004 4005 void dumpPatternString(PrintStream& out) override4005 void dumpPatternString(PrintStream& out) final 4006 4006 { 4007 4007 m_pattern.dumpPatternString(out, m_patternString); 4008 4008 } 4009 4009 4010 int dumpFor(PrintStream& out, unsigned opIndex) override4010 int dumpFor(PrintStream& out, unsigned opIndex) final 4011 4011 { 4012 4012 if (opIndex >= opCount())
Note:
See TracChangeset
for help on using the changeset viewer.