Changeset 213295 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Mar 2, 2017, 12:35:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r213107 r213295 862 862 863 863 if (UNLIKELY(vm.needTrapHandling())) { 864 vm.handleTraps(callFrame); 864 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 865 vm.handleTraps(callFrame, mask); 865 866 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 866 867 } … … 922 923 923 924 if (UNLIKELY(vm.needTrapHandling())) { 924 vm.handleTraps(callFrame); 925 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 926 vm.handleTraps(callFrame, mask); 925 927 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 926 928 } … … 987 989 988 990 if (UNLIKELY(vm.needTrapHandling())) { 989 vm.handleTraps(callFrame); 991 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 992 vm.handleTraps(callFrame, mask); 990 993 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 991 994 } … … 1051 1054 1052 1055 if (UNLIKELY(vm.needTrapHandling())) { 1053 vm.handleTraps(closure.oldCallFrame); 1056 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 1057 vm.handleTraps(closure.oldCallFrame, mask); 1054 1058 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 1055 1059 } … … 1154 1158 1155 1159 if (UNLIKELY(vm.needTrapHandling())) { 1156 vm.handleTraps(callFrame); 1160 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 1161 vm.handleTraps(callFrame, mask); 1157 1162 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 1158 1163 } … … 1195 1200 1196 1201 if (UNLIKELY(vm.needTrapHandling())) { 1197 vm.handleTraps(callFrame); 1202 VMTraps::Mask mask(VMTraps::NeedTermination, VMTraps::NeedWatchdogCheck); 1203 vm.handleTraps(callFrame, mask); 1198 1204 RETURN_IF_EXCEPTION(throwScope, throwScope.exception()); 1199 1205 }
Note:
See TracChangeset
for help on using the changeset viewer.