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

Unified Diff: src/builtins/builtins-definitions.h

Issue 2775203002: [builtins] Implement %TypedArray%.prototype.{some,every} in the CSA (Closed)
Patch Set: addressed comments Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/builtins/builtins-array-gen.cc ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-definitions.h
diff --git a/src/builtins/builtins-definitions.h b/src/builtins/builtins-definitions.h
index 0db6f7848f8b9ea20be3852c3035588d957ca2ce..c8793cd90eb58c8370e15dc038fe040ee006224b 100644
--- a/src/builtins/builtins-definitions.h
+++ b/src/builtins/builtins-definitions.h
@@ -889,6 +889,10 @@ namespace internal {
CPP(TypedArrayPrototypeLastIndexOf) \
/* ES6 #sec-%typedarray%.prototype.reverse */ \
CPP(TypedArrayPrototypeReverse) \
+ /* ES6 %TypedArray%.prototype.every */ \
+ TFJ(TypedArrayPrototypeEvery, 2, kCallbackFn, kThisArg) \
+ /* ES6 %TypedArray%.prototype.some */ \
+ TFJ(TypedArrayPrototypeSome, 2, kCallbackFn, kThisArg) \
\
/* Wasm */ \
ASM(WasmCompileLazy) \
« no previous file with comments | « src/builtins/builtins-array-gen.cc ('k') | src/code-stub-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698