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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 F(IsValidSmi, 1, 1) \ | 354 F(IsValidSmi, 1, 1) \ |
355 F(StringToNumber, 1, 1) \ | 355 F(StringToNumber, 1, 1) \ |
356 F(StringParseInt, 2, 1) \ | 356 F(StringParseInt, 2, 1) \ |
357 F(StringParseFloat, 1, 1) \ | 357 F(StringParseFloat, 1, 1) \ |
358 F(NumberToString, 1, 1) \ | 358 F(NumberToString, 1, 1) \ |
359 F(NumberToStringSkipCache, 1, 1) \ | 359 F(NumberToStringSkipCache, 1, 1) \ |
360 F(NumberToSmi, 1, 1) \ | 360 F(NumberToSmi, 1, 1) \ |
361 F(SmiLexicographicCompare, 2, 1) \ | 361 F(SmiLexicographicCompare, 2, 1) \ |
362 F(MaxSmi, 0, 1) \ | 362 F(MaxSmi, 0, 1) \ |
363 F(IsSmi, 1, 1) \ | 363 F(IsSmi, 1, 1) \ |
364 F(GetRootNaN, 0, 1) \ | |
365 F(GetHoleNaNUpper, 0, 1) \ | 364 F(GetHoleNaNUpper, 0, 1) \ |
366 F(GetHoleNaNLower, 0, 1) | 365 F(GetHoleNaNLower, 0, 1) |
367 | 366 |
368 #define FOR_EACH_INTRINSIC_OBJECT(F) \ | 367 #define FOR_EACH_INTRINSIC_OBJECT(F) \ |
369 F(GetPrototype, 1, 1) \ | 368 F(GetPrototype, 1, 1) \ |
370 F(ObjectHasOwnProperty, 2, 1) \ | 369 F(ObjectHasOwnProperty, 2, 1) \ |
371 F(ObjectCreate, 2, 1) \ | 370 F(ObjectCreate, 2, 1) \ |
372 F(InternalSetPrototype, 2, 1) \ | 371 F(InternalSetPrototype, 2, 1) \ |
373 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 372 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
374 F(GetProperty, 2, 1) \ | 373 F(GetProperty, 2, 1) \ |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 kMaybeDeopted = 1 << 3, | 843 kMaybeDeopted = 1 << 3, |
845 kOptimized = 1 << 4, | 844 kOptimized = 1 << 4, |
846 kTurboFanned = 1 << 5, | 845 kTurboFanned = 1 << 5, |
847 kInterpreted = 1 << 6, | 846 kInterpreted = 1 << 6, |
848 }; | 847 }; |
849 | 848 |
850 } // namespace internal | 849 } // namespace internal |
851 } // namespace v8 | 850 } // namespace v8 |
852 | 851 |
853 #endif // V8_RUNTIME_RUNTIME_H_ | 852 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |