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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 F(LiveEditFunctionSetScript, 2, 1) \ | 356 F(LiveEditFunctionSetScript, 2, 1) \ |
357 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ | 357 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ |
358 F(LiveEditPatchFunctionPositions, 2, 1) \ | 358 F(LiveEditPatchFunctionPositions, 2, 1) \ |
359 F(LiveEditCheckAndDropActivations, 3, 1) \ | 359 F(LiveEditCheckAndDropActivations, 3, 1) \ |
360 F(LiveEditCompareStrings, 2, 1) \ | 360 F(LiveEditCompareStrings, 2, 1) \ |
361 F(LiveEditRestartFrame, 2, 1) | 361 F(LiveEditRestartFrame, 2, 1) |
362 | 362 |
363 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1) | 363 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1) |
364 | 364 |
365 #define FOR_EACH_INTRINSIC_MODULE(F) \ | 365 #define FOR_EACH_INTRINSIC_MODULE(F) \ |
| 366 F(DynamicImportCall, 1, 1) \ |
366 F(GetModuleNamespace, 1, 1) \ | 367 F(GetModuleNamespace, 1, 1) \ |
367 F(LoadModuleVariable, 1, 1) \ | 368 F(LoadModuleVariable, 1, 1) \ |
368 F(StoreModuleVariable, 2, 1) | 369 F(StoreModuleVariable, 2, 1) |
369 | 370 |
370 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ | 371 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ |
371 F(IsValidSmi, 1, 1) \ | 372 F(IsValidSmi, 1, 1) \ |
372 F(StringToNumber, 1, 1) \ | 373 F(StringToNumber, 1, 1) \ |
373 F(StringParseInt, 2, 1) \ | 374 F(StringParseInt, 2, 1) \ |
374 F(StringParseFloat, 1, 1) \ | 375 F(StringParseFloat, 1, 1) \ |
375 F(NumberToString, 1, 1) \ | 376 F(NumberToString, 1, 1) \ |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1161 kMaybeDeopted = 1 << 3, | 1162 kMaybeDeopted = 1 << 3, |
1162 kOptimized = 1 << 4, | 1163 kOptimized = 1 << 4, |
1163 kTurboFanned = 1 << 5, | 1164 kTurboFanned = 1 << 5, |
1164 kInterpreted = 1 << 6, | 1165 kInterpreted = 1 << 6, |
1165 }; | 1166 }; |
1166 | 1167 |
1167 } // namespace internal | 1168 } // namespace internal |
1168 } // namespace v8 | 1169 } // namespace v8 |
1169 | 1170 |
1170 #endif // V8_RUNTIME_RUNTIME_H_ | 1171 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |