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/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 CPP(ArrayBufferIsView) \ | 204 CPP(ArrayBufferIsView) \ |
205 \ | 205 \ |
206 /* Boolean */ \ | 206 /* Boolean */ \ |
207 CPP(BooleanConstructor) \ | 207 CPP(BooleanConstructor) \ |
208 CPP(BooleanConstructor_ConstructStub) \ | 208 CPP(BooleanConstructor_ConstructStub) \ |
209 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ | 209 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ |
210 TFJ(BooleanPrototypeToString, 1) \ | 210 TFJ(BooleanPrototypeToString, 1) \ |
211 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ | 211 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ |
212 TFJ(BooleanPrototypeValueOf, 1) \ | 212 TFJ(BooleanPrototypeValueOf, 1) \ |
213 \ | 213 \ |
| 214 /* CallSite */ \ |
| 215 CPP(CallSiteConstructor) \ |
| 216 CPP(CallSitePrototypeGetColumnNumber) \ |
| 217 CPP(CallSitePrototypeGetEvalOrigin) \ |
| 218 CPP(CallSitePrototypeGetFileName) \ |
| 219 CPP(CallSitePrototypeGetFunction) \ |
| 220 CPP(CallSitePrototypeGetFunctionName) \ |
| 221 CPP(CallSitePrototypeGetLineNumber) \ |
| 222 CPP(CallSitePrototypeGetMethodName) \ |
| 223 CPP(CallSitePrototypeGetPosition) \ |
| 224 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \ |
| 225 CPP(CallSitePrototypeGetThis) \ |
| 226 CPP(CallSitePrototypeGetTypeName) \ |
| 227 CPP(CallSitePrototypeIsConstructor) \ |
| 228 CPP(CallSitePrototypeIsEval) \ |
| 229 CPP(CallSitePrototypeIsNative) \ |
| 230 CPP(CallSitePrototypeIsToplevel) \ |
| 231 CPP(CallSitePrototypeToString) \ |
| 232 \ |
214 /* DataView */ \ | 233 /* DataView */ \ |
215 CPP(DataViewConstructor) \ | 234 CPP(DataViewConstructor) \ |
216 CPP(DataViewConstructor_ConstructStub) \ | 235 CPP(DataViewConstructor_ConstructStub) \ |
217 CPP(DataViewPrototypeGetBuffer) \ | 236 CPP(DataViewPrototypeGetBuffer) \ |
218 CPP(DataViewPrototypeGetByteLength) \ | 237 CPP(DataViewPrototypeGetByteLength) \ |
219 CPP(DataViewPrototypeGetByteOffset) \ | 238 CPP(DataViewPrototypeGetByteOffset) \ |
220 \ | 239 \ |
221 /* Date */ \ | 240 /* Date */ \ |
222 CPP(DateConstructor) \ | 241 CPP(DateConstructor) \ |
223 CPP(DateConstructor_ConstructStub) \ | 242 CPP(DateConstructor_ConstructStub) \ |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 | 643 |
625 friend class Isolate; | 644 friend class Isolate; |
626 | 645 |
627 DISALLOW_COPY_AND_ASSIGN(Builtins); | 646 DISALLOW_COPY_AND_ASSIGN(Builtins); |
628 }; | 647 }; |
629 | 648 |
630 } // namespace internal | 649 } // namespace internal |
631 } // namespace v8 | 650 } // namespace v8 |
632 | 651 |
633 #endif // V8_BUILTINS_BUILTINS_H_ | 652 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |