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

Side by Side Diff: src/runtime/runtime.h

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « src/parsing/preparser.h ('k') | src/runtime/runtime-module.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 F(LiveEditFunctionSetScript, 2, 1) \ 348 F(LiveEditFunctionSetScript, 2, 1) \
349 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ 349 F(LiveEditReplaceRefToNestedFunction, 3, 1) \
350 F(LiveEditPatchFunctionPositions, 2, 1) \ 350 F(LiveEditPatchFunctionPositions, 2, 1) \
351 F(LiveEditCheckAndDropActivations, 3, 1) \ 351 F(LiveEditCheckAndDropActivations, 3, 1) \
352 F(LiveEditCompareStrings, 2, 1) \ 352 F(LiveEditCompareStrings, 2, 1) \
353 F(LiveEditRestartFrame, 2, 1) 353 F(LiveEditRestartFrame, 2, 1)
354 354
355 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1) 355 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1)
356 356
357 #define FOR_EACH_INTRINSIC_MODULE(F) \ 357 #define FOR_EACH_INTRINSIC_MODULE(F) \
358 F(DynamicImportCall, 1, 1) \ 358 F(DynamicImportCall, 2, 1) \
359 F(GetModuleNamespace, 1, 1) \ 359 F(GetModuleNamespace, 1, 1) \
360 F(LoadModuleVariable, 1, 1) \ 360 F(LoadModuleVariable, 1, 1) \
361 F(StoreModuleVariable, 2, 1) 361 F(StoreModuleVariable, 2, 1)
362 362
363 #define FOR_EACH_INTRINSIC_NUMBERS(F) \ 363 #define FOR_EACH_INTRINSIC_NUMBERS(F) \
364 F(IsValidSmi, 1, 1) \ 364 F(IsValidSmi, 1, 1) \
365 F(StringToNumber, 1, 1) \ 365 F(StringToNumber, 1, 1) \
366 F(StringParseInt, 2, 1) \ 366 F(StringParseInt, 2, 1) \
367 F(StringParseFloat, 1, 1) \ 367 F(StringParseFloat, 1, 1) \
368 F(NumberToString, 1, 1) \ 368 F(NumberToString, 1, 1) \
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 kMaybeDeopted = 1 << 3, 841 kMaybeDeopted = 1 << 3,
842 kOptimized = 1 << 4, 842 kOptimized = 1 << 4,
843 kTurboFanned = 1 << 5, 843 kTurboFanned = 1 << 5,
844 kInterpreted = 1 << 6, 844 kInterpreted = 1 << 6,
845 }; 845 };
846 846
847 } // namespace internal 847 } // namespace internal
848 } // namespace v8 848 } // namespace v8
849 849
850 #endif // V8_RUNTIME_RUNTIME_H_ 850 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/parsing/preparser.h ('k') | src/runtime/runtime-module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698