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