| 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/globals.h" | 9 #include "src/globals.h" |
| 10 | 10 |
| (...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 CPP(RegExpRightContextGetter) \ | 724 CPP(RegExpRightContextGetter) \ |
| 725 \ | 725 \ |
| 726 TFS(RegExpReplace, BUILTIN, kNoExtraICState, RegExpReplace, 1) \ | 726 TFS(RegExpReplace, BUILTIN, kNoExtraICState, RegExpReplace, 1) \ |
| 727 TFJ(RegExpPrototypeReplace, 2) \ | 727 TFJ(RegExpPrototypeReplace, 2) \ |
| 728 \ | 728 \ |
| 729 TFS(RegExpSplit, BUILTIN, kNoExtraICState, RegExpSplit, 1) \ | 729 TFS(RegExpSplit, BUILTIN, kNoExtraICState, RegExpSplit, 1) \ |
| 730 TFJ(RegExpPrototypeSplit, 2) \ | 730 TFJ(RegExpPrototypeSplit, 2) \ |
| 731 \ | 731 \ |
| 732 /* SharedArrayBuffer */ \ | 732 /* SharedArrayBuffer */ \ |
| 733 CPP(SharedArrayBufferPrototypeGetByteLength) \ | 733 CPP(SharedArrayBufferPrototypeGetByteLength) \ |
| 734 CPP(SharedArrayBufferPrototypeSlice) \ |
| 734 TFJ(AtomicsLoad, 2) \ | 735 TFJ(AtomicsLoad, 2) \ |
| 735 TFJ(AtomicsStore, 3) \ | 736 TFJ(AtomicsStore, 3) \ |
| 736 TFJ(AtomicsExchange, 3) \ | 737 TFJ(AtomicsExchange, 3) \ |
| 737 \ | 738 \ |
| 738 /* String */ \ | 739 /* String */ \ |
| 739 ASM(StringConstructor) \ | 740 ASM(StringConstructor) \ |
| 740 ASM(StringConstructor_ConstructStub) \ | 741 ASM(StringConstructor_ConstructStub) \ |
| 741 CPP(StringFromCodePoint) \ | 742 CPP(StringFromCodePoint) \ |
| 742 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ | 743 /* ES6 section 21.1.2.1 String.fromCharCode ( ...codeUnits ) */ \ |
| 743 TFJ(StringFromCharCode, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ | 744 TFJ(StringFromCharCode, SharedFunctionInfo::kDontAdaptArgumentsSentinel) \ |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 | 1006 |
| 1006 friend class Isolate; | 1007 friend class Isolate; |
| 1007 | 1008 |
| 1008 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1009 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 1009 }; | 1010 }; |
| 1010 | 1011 |
| 1011 } // namespace internal | 1012 } // namespace internal |
| 1012 } // namespace v8 | 1013 } // namespace v8 |
| 1013 | 1014 |
| 1014 #endif // V8_BUILTINS_BUILTINS_H_ | 1015 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |