Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Side by Side Diff: src/messages.h

Issue 1965443003: [simdjs] Implement error raising semantics as per spec for integers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update to newer ecmascript_simd repository Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The infrastructure used for (localized) message reporting in V8. 5 // The infrastructure used for (localized) message reporting in V8.
6 // 6 //
7 // Note: there's a big unresolved issue about ownership of the data 7 // Note: there's a big unresolved issue about ownership of the data
8 // structures used by this framework. 8 // structures used by this framework.
9 9
10 #ifndef V8_MESSAGES_H_ 10 #ifndef V8_MESSAGES_H_
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 T(InvalidDataViewOffset, "Start offset is outside the bounds of the buffer") \ 334 T(InvalidDataViewOffset, "Start offset is outside the bounds of the buffer") \
335 T(InvalidHint, "Invalid hint: %") \ 335 T(InvalidHint, "Invalid hint: %") \
336 T(InvalidLanguageTag, "Invalid language tag: %") \ 336 T(InvalidLanguageTag, "Invalid language tag: %") \
337 T(InvalidWeakMapKey, "Invalid value used as weak map key") \ 337 T(InvalidWeakMapKey, "Invalid value used as weak map key") \
338 T(InvalidWeakSetValue, "Invalid value used in weak set") \ 338 T(InvalidWeakSetValue, "Invalid value used in weak set") \
339 T(InvalidStringLength, "Invalid string length") \ 339 T(InvalidStringLength, "Invalid string length") \
340 T(InvalidTimeValue, "Invalid time value") \ 340 T(InvalidTimeValue, "Invalid time value") \
341 T(InvalidTypedArrayAlignment, "% of % should be a multiple of %") \ 341 T(InvalidTypedArrayAlignment, "% of % should be a multiple of %") \
342 T(InvalidTypedArrayLength, "Invalid typed array length") \ 342 T(InvalidTypedArrayLength, "Invalid typed array length") \
343 T(InvalidTypedArrayOffset, "Start offset is too large:") \ 343 T(InvalidTypedArrayOffset, "Start offset is too large:") \
344 T(InvalidSimdIndex, "Index out of bounds for SIMD operation") \
344 T(LetInLexicalBinding, "let is disallowed as a lexically bound name") \ 345 T(LetInLexicalBinding, "let is disallowed as a lexically bound name") \
345 T(LocaleMatcher, "Illegal value for localeMatcher:%") \ 346 T(LocaleMatcher, "Illegal value for localeMatcher:%") \
346 T(NormalizationForm, "The normalization form should be one of %.") \ 347 T(NormalizationForm, "The normalization form should be one of %.") \
347 T(NumberFormatRange, "% argument must be between 0 and 20") \ 348 T(NumberFormatRange, "% argument must be between 0 and 20") \
348 T(PropertyValueOutOfRange, "% value is out of range.") \ 349 T(PropertyValueOutOfRange, "% value is out of range.") \
349 T(StackOverflow, "Maximum call stack size exceeded") \ 350 T(StackOverflow, "Maximum call stack size exceeded") \
350 T(ToPrecisionFormatRange, "toPrecision() argument must be between 1 and 21") \ 351 T(ToPrecisionFormatRange, "toPrecision() argument must be between 1 and 21") \
351 T(ToRadixFormatRange, "toString() radix argument must be between 2 and 36") \ 352 T(ToRadixFormatRange, "toString() radix argument must be between 2 and 36") \
352 T(TypedArraySetNegativeOffset, "Start offset is negative") \ 353 T(TypedArraySetNegativeOffset, "Start offset is negative") \
353 T(TypedArraySetSourceTooLarge, "Source is too large") \ 354 T(TypedArraySetSourceTooLarge, "Source is too large") \
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); 526 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data);
526 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, 527 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate,
527 Handle<Object> data); 528 Handle<Object> data);
528 }; 529 };
529 530
530 531
531 } // namespace internal 532 } // namespace internal
532 } // namespace v8 533 } // namespace v8
533 534
534 #endif // V8_MESSAGES_H_ 535 #endif // V8_MESSAGES_H_
OLDNEW
« no previous file with comments | « DEPS ('k') | src/runtime/runtime-simd.cc » ('j') | src/runtime/runtime-simd.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698