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

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

Issue 2697013009: Move ArrayBuffer.prototype.slice implementation to C++ (Closed)
Patch Set: merge master 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 unified diff | Download patch
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-arraybuffer.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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 /* ES6 #sec-array.prototype.values */ \ 282 /* ES6 #sec-array.prototype.values */ \
283 TFJ(ArrayPrototypeValues, 0) \ 283 TFJ(ArrayPrototypeValues, 0) \
284 /* ES6 #sec-%arrayiteratorprototype%.next */ \ 284 /* ES6 #sec-%arrayiteratorprototype%.next */ \
285 TFJ(ArrayIteratorPrototypeNext, 0) \ 285 TFJ(ArrayIteratorPrototypeNext, 0) \
286 \ 286 \
287 /* ArrayBuffer */ \ 287 /* ArrayBuffer */ \
288 CPP(ArrayBufferConstructor) \ 288 CPP(ArrayBufferConstructor) \
289 CPP(ArrayBufferConstructor_ConstructStub) \ 289 CPP(ArrayBufferConstructor_ConstructStub) \
290 CPP(ArrayBufferPrototypeGetByteLength) \ 290 CPP(ArrayBufferPrototypeGetByteLength) \
291 CPP(ArrayBufferIsView) \ 291 CPP(ArrayBufferIsView) \
292 CPP(ArrayBufferPrototypeSlice) \
292 \ 293 \
293 /* AsyncFunction */ \ 294 /* AsyncFunction */ \
294 TFJ(AsyncFunctionAwaitCaught, 3) \ 295 TFJ(AsyncFunctionAwaitCaught, 3) \
295 TFJ(AsyncFunctionAwaitUncaught, 3) \ 296 TFJ(AsyncFunctionAwaitUncaught, 3) \
296 TFJ(AsyncFunctionAwaitRejectClosure, 1) \ 297 TFJ(AsyncFunctionAwaitRejectClosure, 1) \
297 TFJ(AsyncFunctionAwaitResolveClosure, 1) \ 298 TFJ(AsyncFunctionAwaitResolveClosure, 1) \
298 TFJ(AsyncFunctionPromiseCreate, 0) \ 299 TFJ(AsyncFunctionPromiseCreate, 0) \
299 TFJ(AsyncFunctionPromiseRelease, 1) \ 300 TFJ(AsyncFunctionPromiseRelease, 1) \
300 \ 301 \
301 /* Boolean */ \ 302 /* Boolean */ \
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 993
993 friend class Isolate; 994 friend class Isolate;
994 995
995 DISALLOW_COPY_AND_ASSIGN(Builtins); 996 DISALLOW_COPY_AND_ASSIGN(Builtins);
996 }; 997 };
997 998
998 } // namespace internal 999 } // namespace internal
999 } // namespace v8 1000 } // namespace v8
1000 1001
1001 #endif // V8_BUILTINS_BUILTINS_H_ 1002 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-arraybuffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698