| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 CPP(ReflectGet) \ | 482 CPP(ReflectGet) \ |
| 483 CPP(ReflectGetOwnPropertyDescriptor) \ | 483 CPP(ReflectGetOwnPropertyDescriptor) \ |
| 484 CPP(ReflectGetPrototypeOf) \ | 484 CPP(ReflectGetPrototypeOf) \ |
| 485 CPP(ReflectHas) \ | 485 CPP(ReflectHas) \ |
| 486 CPP(ReflectIsExtensible) \ | 486 CPP(ReflectIsExtensible) \ |
| 487 CPP(ReflectOwnKeys) \ | 487 CPP(ReflectOwnKeys) \ |
| 488 CPP(ReflectPreventExtensions) \ | 488 CPP(ReflectPreventExtensions) \ |
| 489 CPP(ReflectSet) \ | 489 CPP(ReflectSet) \ |
| 490 CPP(ReflectSetPrototypeOf) \ | 490 CPP(ReflectSetPrototypeOf) \ |
| 491 \ | 491 \ |
| 492 /* RegExp */ \ |
| 493 CPP(RegExpConstructor) \ |
| 494 \ |
| 492 /* SharedArrayBuffer */ \ | 495 /* SharedArrayBuffer */ \ |
| 493 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 496 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
| 494 TFJ(AtomicsLoad, 3) \ | 497 TFJ(AtomicsLoad, 3) \ |
| 495 TFJ(AtomicsStore, 4) \ | 498 TFJ(AtomicsStore, 4) \ |
| 496 \ | 499 \ |
| 497 /* String */ \ | 500 /* String */ \ |
| 498 ASM(StringConstructor) \ | 501 ASM(StringConstructor) \ |
| 499 ASM(StringConstructor_ConstructStub) \ | 502 ASM(StringConstructor_ConstructStub) \ |
| 500 CPP(StringFromCodePoint) \ | 503 CPP(StringFromCodePoint) \ |
| 501 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ | 504 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 | 671 |
| 669 friend class Isolate; | 672 friend class Isolate; |
| 670 | 673 |
| 671 DISALLOW_COPY_AND_ASSIGN(Builtins); | 674 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 672 }; | 675 }; |
| 673 | 676 |
| 674 } // namespace internal | 677 } // namespace internal |
| 675 } // namespace v8 | 678 } // namespace v8 |
| 676 | 679 |
| 677 #endif // V8_BUILTINS_BUILTINS_H_ | 680 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |