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

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

Issue 2691993004: [wasm] Introduce WasmStackGuard builtin (Closed)
Patch Set: Rebase Created 3 years, 10 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 | « BUILD.gn ('k') | src/builtins/builtins-wasm.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 TFJ(TypedArrayPrototypeByteOffset, 0) \ 809 TFJ(TypedArrayPrototypeByteOffset, 0) \
810 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ 810 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \
811 TFJ(TypedArrayPrototypeLength, 0) \ 811 TFJ(TypedArrayPrototypeLength, 0) \
812 /* ES6 #sec-%typedarray%.prototype.entries */ \ 812 /* ES6 #sec-%typedarray%.prototype.entries */ \
813 TFJ(TypedArrayPrototypeEntries, 0) \ 813 TFJ(TypedArrayPrototypeEntries, 0) \
814 /* ES6 #sec-%typedarray%.prototype.keys */ \ 814 /* ES6 #sec-%typedarray%.prototype.keys */ \
815 TFJ(TypedArrayPrototypeKeys, 0) \ 815 TFJ(TypedArrayPrototypeKeys, 0) \
816 /* ES6 #sec-%typedarray%.prototype.values */ \ 816 /* ES6 #sec-%typedarray%.prototype.values */ \
817 TFJ(TypedArrayPrototypeValues, 0) \ 817 TFJ(TypedArrayPrototypeValues, 0) \
818 /* ES6 #sec-%typedarray%.prototype.copywithin */ \ 818 /* ES6 #sec-%typedarray%.prototype.copywithin */ \
819 CPP(TypedArrayPrototypeCopyWithin) 819 CPP(TypedArrayPrototypeCopyWithin) \
820 \
821 /* Wasm */ \
822 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmStackGuard, 1)
820 823
821 #define IGNORE_BUILTIN(...) 824 #define IGNORE_BUILTIN(...)
822 825
823 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) 826 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V)
824 827
825 #define BUILTIN_LIST_C(V) \ 828 #define BUILTIN_LIST_C(V) \
826 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 829 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
827 IGNORE_BUILTIN, IGNORE_BUILTIN) 830 IGNORE_BUILTIN, IGNORE_BUILTIN)
828 831
829 #define BUILTIN_LIST_A(V) \ 832 #define BUILTIN_LIST_A(V) \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
964 967
965 friend class Isolate; 968 friend class Isolate;
966 969
967 DISALLOW_COPY_AND_ASSIGN(Builtins); 970 DISALLOW_COPY_AND_ASSIGN(Builtins);
968 }; 971 };
969 972
970 } // namespace internal 973 } // namespace internal
971 } // namespace v8 974 } // namespace v8
972 975
973 #endif // V8_BUILTINS_BUILTINS_H_ 976 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/builtins/builtins-wasm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698