| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 TFJ(RegExpPrototypeTest, 1) \ | 609 TFJ(RegExpPrototypeTest, 1) \ |
| 610 CPP(RegExpPrototypeToString) \ | 610 CPP(RegExpPrototypeToString) \ |
| 611 TFJ(RegExpPrototypeUnicodeGetter, 0) \ | 611 TFJ(RegExpPrototypeUnicodeGetter, 0) \ |
| 612 CPP(RegExpRightContextGetter) \ | 612 CPP(RegExpRightContextGetter) \ |
| 613 \ | 613 \ |
| 614 /* SharedArrayBuffer */ \ | 614 /* SharedArrayBuffer */ \ |
| 615 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 615 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
| 616 TFJ(AtomicsLoad, 2) \ | 616 TFJ(AtomicsLoad, 2) \ |
| 617 TFJ(AtomicsStore, 3) \ | 617 TFJ(AtomicsStore, 3) \ |
| 618 \ | 618 \ |
| 619 /* Spread */ \ |
| 620 CPP(SpreadIterablePrepare) \ |
| 621 \ |
| 619 /* String */ \ | 622 /* String */ \ |
| 620 ASM(StringConstructor) \ | 623 ASM(StringConstructor) \ |
| 621 ASM(StringConstructor_ConstructStub) \ | 624 ASM(StringConstructor_ConstructStub) \ |
| 622 CPP(StringFromCodePoint) \ | 625 CPP(StringFromCodePoint) \ |
| 623 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ | 626 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ |
| 624 TFJ(StringFromCharCode, 1) \ | 627 TFJ(StringFromCharCode, 1) \ |
| 625 /* ES6 section 21.1.3.1 String.prototype.charAt ( pos ) */ \ | 628 /* ES6 section 21.1.3.1 String.prototype.charAt ( pos ) */ \ |
| 626 TFJ(StringPrototypeCharAt, 1) \ | 629 TFJ(StringPrototypeCharAt, 1) \ |
| 627 /* ES6 section 21.1.3.2 String.prototype.charCodeAt ( pos ) */ \ | 630 /* ES6 section 21.1.3.2 String.prototype.charCodeAt ( pos ) */ \ |
| 628 TFJ(StringPrototypeCharCodeAt, 1) \ | 631 TFJ(StringPrototypeCharCodeAt, 1) \ |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 | 835 |
| 833 friend class Isolate; | 836 friend class Isolate; |
| 834 | 837 |
| 835 DISALLOW_COPY_AND_ASSIGN(Builtins); | 838 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 836 }; | 839 }; |
| 837 | 840 |
| 838 } // namespace internal | 841 } // namespace internal |
| 839 } // namespace v8 | 842 } // namespace v8 |
| 840 | 843 |
| 841 #endif // V8_BUILTINS_BUILTINS_H_ | 844 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |