| OLD | NEW | 
|    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  Loading... | 
|  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  Loading... | 
|  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_ | 
| OLD | NEW |