Changeset 252021 in webkit for trunk/Source/JavaScriptCore/bytecode/MethodOfGettingAValueProfile.cpp
- Timestamp:
- Nov 4, 2019, 3:47:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/MethodOfGettingAValueProfile.cpp
r252015 r252021 67 67 } 68 68 69 case UnaryArithProfileReady: {70 u. unaryArithProfile->emitObserveResult(jit, regs, DoNotHaveTagRegisters);69 case ArithProfileReady: { 70 u.arithProfile->emitObserveResult(jit, regs, DoNotHaveTagRegisters); 71 71 return; 72 } 73 74 case BinaryArithProfileReady: { 75 u.binaryArithProfile->emitObserveResult(jit, regs, DoNotHaveTagRegisters); 76 return; 77 } 78 } 72 } } 79 73 80 74 RELEASE_ASSERT_NOT_REACHED(); … … 101 95 } 102 96 103 case UnaryArithProfileReady: {104 u. unaryArithProfile->observeResult(value);97 case ArithProfileReady: { 98 u.arithProfile->observeResult(value); 105 99 return; 106 } 107 108 case BinaryArithProfileReady: { 109 u.binaryArithProfile->observeResult(value); 110 return; 111 } 112 } 100 } } 113 101 114 102 RELEASE_ASSERT_NOT_REACHED();
Note:
See TracChangeset
for help on using the changeset viewer.