| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef V8_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
| 6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 F(GetDefaultICULocale, 0, 1) \ | 249 F(GetDefaultICULocale, 0, 1) \ |
| 250 F(GetLanguageTagVariants, 1, 1) \ | 250 F(GetLanguageTagVariants, 1, 1) \ |
| 251 F(IsInitializedIntlObject, 1, 1) \ | 251 F(IsInitializedIntlObject, 1, 1) \ |
| 252 F(IsInitializedIntlObjectOfType, 2, 1) \ | 252 F(IsInitializedIntlObjectOfType, 2, 1) \ |
| 253 F(MarkAsInitializedIntlObjectOfType, 2, 1) \ | 253 F(MarkAsInitializedIntlObjectOfType, 2, 1) \ |
| 254 F(CreateDateTimeFormat, 3, 1) \ | 254 F(CreateDateTimeFormat, 3, 1) \ |
| 255 F(InternalDateFormat, 2, 1) \ | 255 F(InternalDateFormat, 2, 1) \ |
| 256 F(InternalDateFormatToParts, 2, 1) \ | 256 F(InternalDateFormatToParts, 2, 1) \ |
| 257 F(CreateNumberFormat, 3, 1) \ | 257 F(CreateNumberFormat, 3, 1) \ |
| 258 F(InternalNumberFormat, 2, 1) \ | 258 F(InternalNumberFormat, 2, 1) \ |
| 259 F(CurrencyDigits, 1, 1) \ |
| 259 F(CreateCollator, 3, 1) \ | 260 F(CreateCollator, 3, 1) \ |
| 260 F(InternalCompare, 3, 1) \ | 261 F(InternalCompare, 3, 1) \ |
| 261 F(StringNormalize, 2, 1) \ | 262 F(StringNormalize, 2, 1) \ |
| 262 F(CreateBreakIterator, 3, 1) \ | 263 F(CreateBreakIterator, 3, 1) \ |
| 263 F(BreakIteratorAdoptText, 2, 1) \ | 264 F(BreakIteratorAdoptText, 2, 1) \ |
| 264 F(BreakIteratorFirst, 1, 1) \ | 265 F(BreakIteratorFirst, 1, 1) \ |
| 265 F(BreakIteratorNext, 1, 1) \ | 266 F(BreakIteratorNext, 1, 1) \ |
| 266 F(BreakIteratorCurrent, 1, 1) \ | 267 F(BreakIteratorCurrent, 1, 1) \ |
| 267 F(BreakIteratorBreakType, 1, 1) \ | 268 F(BreakIteratorBreakType, 1, 1) \ |
| 268 F(StringToLowerCaseI18N, 1, 1) \ | 269 F(StringToLowerCaseI18N, 1, 1) \ |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 kMaybeDeopted = 1 << 3, | 844 kMaybeDeopted = 1 << 3, |
| 844 kOptimized = 1 << 4, | 845 kOptimized = 1 << 4, |
| 845 kTurboFanned = 1 << 5, | 846 kTurboFanned = 1 << 5, |
| 846 kInterpreted = 1 << 6, | 847 kInterpreted = 1 << 6, |
| 847 }; | 848 }; |
| 848 | 849 |
| 849 } // namespace internal | 850 } // namespace internal |
| 850 } // namespace v8 | 851 } // namespace v8 |
| 851 | 852 |
| 852 #endif // V8_RUNTIME_RUNTIME_H_ | 853 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |