Changeset 209027 in webkit
- Timestamp:
- Nov 28, 2016, 3:07:33 PM (8 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r209026 r209027 1 2016-11-28 Mark Lam <mark.lam@apple.com> 2 3 Fix exception scope verification failures in JSTypedArrayViewPrototype.cpp. 4 https://bugs.webkit.org/show_bug.cgi?id=165049 5 6 Reviewed by Saam Barati. 7 8 * runtime/JSTypedArrayViewPrototype.cpp: 9 (JSC::typedArrayViewPrivateFuncSort): 10 (JSC::typedArrayViewProtoFuncSet): 11 (JSC::typedArrayViewProtoFuncCopyWithin): 12 (JSC::typedArrayViewProtoFuncIncludes): 13 (JSC::typedArrayViewProtoFuncLastIndexOf): 14 (JSC::typedArrayViewProtoFuncIndexOf): 15 (JSC::typedArrayViewProtoFuncJoin): 16 (JSC::typedArrayViewProtoGetterFuncBuffer): 17 (JSC::typedArrayViewProtoGetterFuncLength): 18 (JSC::typedArrayViewProtoGetterFuncByteLength): 19 (JSC::typedArrayViewProtoGetterFuncByteOffset): 20 (JSC::typedArrayViewProtoFuncReverse): 21 (JSC::typedArrayViewPrivateFuncSubarrayCreate): 22 (JSC::typedArrayViewProtoFuncSlice): 23 1 24 2016-11-28 Mark Lam <mark.lam@apple.com> 2 25 -
trunk/Source/JavaScriptCore/runtime/JSTypedArrayViewPrototype.cpp
r205462 r209027 101 101 auto scope = DECLARE_THROW_SCOPE(vm); 102 102 JSValue thisValue = exec->argument(0); 103 scope.release(); 103 104 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewPrivateFuncSort); 104 105 } … … 111 112 if (UNLIKELY(!thisValue.isObject())) 112 113 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 114 scope.release(); 113 115 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncSet); 114 116 } … … 121 123 if (!thisValue.isObject()) 122 124 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 125 scope.release(); 123 126 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncCopyWithin); 124 127 } … … 131 134 if (!thisValue.isObject()) 132 135 return throwVMError(exec, scope, createTypeError(exec, "Receiver should be a typed array view but was not an object")); 136 scope.release(); 133 137 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncIncludes); 134 138 } … … 141 145 if (!thisValue.isObject()) 142 146 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 147 scope.release(); 143 148 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncLastIndexOf); 144 149 } … … 151 156 if (!thisValue.isObject()) 152 157 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 158 scope.release(); 153 159 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncIndexOf); 154 160 } … … 161 167 if (!thisValue.isObject()) 162 168 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 169 scope.release(); 163 170 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncJoin); 164 171 } … … 171 178 if (!thisValue.isObject()) 172 179 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 180 scope.release(); 173 181 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoGetterFuncBuffer); 174 182 } … … 181 189 if (!thisValue.isObject()) 182 190 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 191 scope.release(); 183 192 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoGetterFuncLength); 184 193 } … … 191 200 if (!thisValue.isObject()) 192 201 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 202 scope.release(); 193 203 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoGetterFuncByteLength); 194 204 } … … 201 211 if (!thisValue.isObject()) 202 212 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 213 scope.release(); 203 214 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoGetterFuncByteOffset); 204 215 } … … 211 222 if (!thisValue.isObject()) 212 223 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 224 scope.release(); 213 225 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncReverse); 214 226 } … … 221 233 if (!thisValue.isObject()) 222 234 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 235 scope.release(); 223 236 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewPrivateFuncSubarrayCreate); 224 237 } … … 231 244 if (!thisValue.isObject()) 232 245 return throwVMTypeError(exec, scope, ASCIILiteral("Receiver should be a typed array view but was not an object")); 246 scope.release(); 233 247 CALL_GENERIC_TYPEDARRAY_PROTOTYPE_FUNCTION(genericTypedArrayViewProtoFuncSlice); 234 248 }
Note:
See TracChangeset
for help on using the changeset viewer.