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

Side by Side Diff: src/builtins.h

Issue 2102223005: [builtins] Migrate Math.hypot() to C++ builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@MathAbs
Patch Set: Do not add Math.hypot() to list of optimized functions. Created 4 years, 5 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 1
2 // Copyright 2011 the V8 project authors. All rights reserved. 2 // Copyright 2011 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #ifndef V8_BUILTINS_H_ 6 #ifndef V8_BUILTINS_H_
7 #define V8_BUILTINS_H_ 7 #define V8_BUILTINS_H_
8 8
9 #include "src/base/flags.h" 9 #include "src/base/flags.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 V(GlobalUnescape, BUILTIN_EXIT) \ 113 V(GlobalUnescape, BUILTIN_EXIT) \
114 \ 114 \
115 V(GlobalEval, BUILTIN_EXIT) \ 115 V(GlobalEval, BUILTIN_EXIT) \
116 \ 116 \
117 V(JsonParse, BUILTIN_EXIT) \ 117 V(JsonParse, BUILTIN_EXIT) \
118 V(JsonStringify, BUILTIN_EXIT) \ 118 V(JsonStringify, BUILTIN_EXIT) \
119 \ 119 \
120 V(MathAcos, BUILTIN_EXIT) \ 120 V(MathAcos, BUILTIN_EXIT) \
121 V(MathAsin, BUILTIN_EXIT) \ 121 V(MathAsin, BUILTIN_EXIT) \
122 V(MathFround, BUILTIN_EXIT) \ 122 V(MathFround, BUILTIN_EXIT) \
123 V(MathHypot, BUILTIN_EXIT) \
123 V(MathImul, BUILTIN_EXIT) \ 124 V(MathImul, BUILTIN_EXIT) \
124 \ 125 \
125 V(ObjectAssign, BUILTIN_EXIT) \ 126 V(ObjectAssign, BUILTIN_EXIT) \
126 V(ObjectCreate, BUILTIN_EXIT) \ 127 V(ObjectCreate, BUILTIN_EXIT) \
127 V(ObjectDefineGetter, BUILTIN_EXIT) \ 128 V(ObjectDefineGetter, BUILTIN_EXIT) \
128 V(ObjectDefineProperties, BUILTIN_EXIT) \ 129 V(ObjectDefineProperties, BUILTIN_EXIT) \
129 V(ObjectDefineProperty, BUILTIN_EXIT) \ 130 V(ObjectDefineProperty, BUILTIN_EXIT) \
130 V(ObjectDefineSetter, BUILTIN_EXIT) \ 131 V(ObjectDefineSetter, BUILTIN_EXIT) \
131 V(ObjectEntries, BUILTIN_EXIT) \ 132 V(ObjectEntries, BUILTIN_EXIT) \
132 V(ObjectFreeze, BUILTIN_EXIT) \ 133 V(ObjectFreeze, BUILTIN_EXIT) \
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 friend class BuiltinFunctionTable; 773 friend class BuiltinFunctionTable;
773 friend class Isolate; 774 friend class Isolate;
774 775
775 DISALLOW_COPY_AND_ASSIGN(Builtins); 776 DISALLOW_COPY_AND_ASSIGN(Builtins);
776 }; 777 };
777 778
778 } // namespace internal 779 } // namespace internal
779 } // namespace v8 780 } // namespace v8
780 781
781 #endif // V8_BUILTINS_H_ 782 #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