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

Side by Side Diff: src/builtins.h

Issue 1731543004: [builtins] Migrate a bunch of Math builtins to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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.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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 \ 109 \
110 V(FunctionConstructor, kTargetAndNewTarget) \ 110 V(FunctionConstructor, kTargetAndNewTarget) \
111 V(FunctionPrototypeBind, kNone) \ 111 V(FunctionPrototypeBind, kNone) \
112 V(FunctionPrototypeToString, kNone) \ 112 V(FunctionPrototypeToString, kNone) \
113 V(FunctionHasInstance, kNone) \ 113 V(FunctionHasInstance, kNone) \
114 \ 114 \
115 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \ 115 V(GeneratorFunctionConstructor, kTargetAndNewTarget) \
116 \ 116 \
117 V(GlobalEval, kTarget) \ 117 V(GlobalEval, kTarget) \
118 \ 118 \
119 V(MathAcos, kNone) \
120 V(MathAsin, kNone) \
121 V(MathAtan, kNone) \
122 V(MathFround, kNone) \
123 V(MathImul, kNone) \
124 \
119 V(ObjectAssign, kNone) \ 125 V(ObjectAssign, kNone) \
120 V(ObjectCreate, kNone) \ 126 V(ObjectCreate, kNone) \
121 V(ObjectFreeze, kNone) \ 127 V(ObjectFreeze, kNone) \
122 V(ObjectGetOwnPropertyDescriptor, kNone) \ 128 V(ObjectGetOwnPropertyDescriptor, kNone) \
123 V(ObjectGetOwnPropertyNames, kNone) \ 129 V(ObjectGetOwnPropertyNames, kNone) \
124 V(ObjectGetOwnPropertySymbols, kNone) \ 130 V(ObjectGetOwnPropertySymbols, kNone) \
125 V(ObjectIs, kNone) \ 131 V(ObjectIs, kNone) \
126 V(ObjectIsExtensible, kNone) \ 132 V(ObjectIsExtensible, kNone) \
127 V(ObjectIsFrozen, kNone) \ 133 V(ObjectIsFrozen, kNone) \
128 V(ObjectIsSealed, kNone) \ 134 V(ObjectIsSealed, kNone) \
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 friend class BuiltinFunctionTable; 622 friend class BuiltinFunctionTable;
617 friend class Isolate; 623 friend class Isolate;
618 624
619 DISALLOW_COPY_AND_ASSIGN(Builtins); 625 DISALLOW_COPY_AND_ASSIGN(Builtins);
620 }; 626 };
621 627
622 } // namespace internal 628 } // namespace internal
623 } // namespace v8 629 } // namespace v8
624 630
625 #endif // V8_BUILTINS_H_ 631 #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