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

Side by Side Diff: src/builtins.h

Issue 1553043002: [builtins] Migrate a bunch of Object builtins to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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.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_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 V(FunctionConstructor, kTargetAndNewTarget) \ 74 V(FunctionConstructor, kTargetAndNewTarget) \
75 V(FunctionPrototypeBind, kNone) \ 75 V(FunctionPrototypeBind, kNone) \
76 V(FunctionPrototypeToString, kNone) \ 76 V(FunctionPrototypeToString, kNone) \
77 \ 77 \
78 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 78 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
79 \ 79 \
80 V(GlobalEval, kTarget) \ 80 V(GlobalEval, kTarget) \
81 \ 81 \
82 V(ObjectAssign, kNone) \ 82 V(ObjectAssign, kNone) \
83 V(ObjectCreate, kNone) \ 83 V(ObjectCreate, kNone) \
84 V(ObjectFreeze, kNone) \
85 V(ObjectIsExtensible, kNone) \
86 V(ObjectIsFrozen, kNone) \
87 V(ObjectIsSealed, kNone) \
88 V(ObjectPreventExtensions, kNone) \
89 V(ObjectSeal, kNone) \
84 V(ObjectProtoToString, kNone) \ 90 V(ObjectProtoToString, kNone) \
85 \ 91 \
86 V(ProxyConstructor, kNone) \ 92 V(ProxyConstructor, kNone) \
87 V(ProxyConstructor_ConstructStub, kTarget) \ 93 V(ProxyConstructor_ConstructStub, kTarget) \
88 \ 94 \
89 V(ReflectDefineProperty, kNone) \ 95 V(ReflectDefineProperty, kNone) \
90 V(ReflectDeleteProperty, kNone) \ 96 V(ReflectDeleteProperty, kNone) \
91 V(ReflectGet, kNone) \ 97 V(ReflectGet, kNone) \
92 V(ReflectGetOwnPropertyDescriptor, kNone) \ 98 V(ReflectGetOwnPropertyDescriptor, kNone) \
93 V(ReflectGetPrototypeOf, kNone) \ 99 V(ReflectGetPrototypeOf, kNone) \
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 friend class BuiltinFunctionTable; 424 friend class BuiltinFunctionTable;
419 friend class Isolate; 425 friend class Isolate;
420 426
421 DISALLOW_COPY_AND_ASSIGN(Builtins); 427 DISALLOW_COPY_AND_ASSIGN(Builtins);
422 }; 428 };
423 429
424 } // namespace internal 430 } // namespace internal
425 } // namespace v8 431 } // namespace v8
426 432
427 #endif // V8_BUILTINS_H_ 433 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698