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

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

Issue 2691993004: [wasm] Introduce WasmStackGuard builtin (Closed)
Patch Set: Add builtins-wasm.cc ;) 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
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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 TFJ(TypedArrayPrototypeByteLength, 0) \ 799 TFJ(TypedArrayPrototypeByteLength, 0) \
800 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \ 800 /* ES6 section 22.2.3.3 get %TypedArray%.prototype.byteOffset */ \
801 TFJ(TypedArrayPrototypeByteOffset, 0) \ 801 TFJ(TypedArrayPrototypeByteOffset, 0) \
802 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \ 802 /* ES6 section 22.2.3.18 get %TypedArray%.prototype.length */ \
803 TFJ(TypedArrayPrototypeLength, 0) \ 803 TFJ(TypedArrayPrototypeLength, 0) \
804 /* ES6 #sec-%typedarray%.prototype.entries */ \ 804 /* ES6 #sec-%typedarray%.prototype.entries */ \
805 TFJ(TypedArrayPrototypeEntries, 0) \ 805 TFJ(TypedArrayPrototypeEntries, 0) \
806 /* ES6 #sec-%typedarray%.prototype.keys */ \ 806 /* ES6 #sec-%typedarray%.prototype.keys */ \
807 TFJ(TypedArrayPrototypeKeys, 0) \ 807 TFJ(TypedArrayPrototypeKeys, 0) \
808 /* ES6 #sec-%typedarray%.prototype.values */ \ 808 /* ES6 #sec-%typedarray%.prototype.values */ \
809 TFJ(TypedArrayPrototypeValues, 0) 809 TFJ(TypedArrayPrototypeValues, 0) \
810 \
811 /* Wasm */ \
812 TFS(WasmStackGuard, BUILTIN, kNoExtraICState, WasmStackGuard, 1)
810 813
811 #define IGNORE_BUILTIN(...) 814 #define IGNORE_BUILTIN(...)
812 815
813 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V) 816 #define BUILTIN_LIST_ALL(V) BUILTIN_LIST(V, V, V, V, V, V, V)
814 817
815 #define BUILTIN_LIST_C(V) \ 818 #define BUILTIN_LIST_C(V) \
816 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \ 819 BUILTIN_LIST(V, V, IGNORE_BUILTIN, IGNORE_BUILTIN, IGNORE_BUILTIN, \
817 IGNORE_BUILTIN, IGNORE_BUILTIN) 820 IGNORE_BUILTIN, IGNORE_BUILTIN)
818 821
819 #define BUILTIN_LIST_A(V) \ 822 #define BUILTIN_LIST_A(V) \
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 957
955 friend class Isolate; 958 friend class Isolate;
956 959
957 DISALLOW_COPY_AND_ASSIGN(Builtins); 960 DISALLOW_COPY_AND_ASSIGN(Builtins);
958 }; 961 };
959 962
960 } // namespace internal 963 } // namespace internal
961 } // namespace v8 964 } // namespace v8
962 965
963 #endif // V8_BUILTINS_BUILTINS_H_ 966 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/builtins/builtins-wasm.cc » ('j') | src/builtins/builtins-wasm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698