| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 CopyFastSmiOrObjectElements) \ | 178 CopyFastSmiOrObjectElements) \ |
| 179 TFS(GrowFastDoubleElements, BUILTIN, kNoExtraICState, GrowArrayElements) \ | 179 TFS(GrowFastDoubleElements, BUILTIN, kNoExtraICState, GrowArrayElements) \ |
| 180 TFS(GrowFastSmiOrObjectElements, BUILTIN, kNoExtraICState, \ | 180 TFS(GrowFastSmiOrObjectElements, BUILTIN, kNoExtraICState, \ |
| 181 GrowArrayElements) \ | 181 GrowArrayElements) \ |
| 182 TFS(NewUnmappedArgumentsElements, BUILTIN, kNoExtraICState, \ | 182 TFS(NewUnmappedArgumentsElements, BUILTIN, kNoExtraICState, \ |
| 183 NewArgumentsElements) \ | 183 NewArgumentsElements) \ |
| 184 TFS(NewRestParameterElements, BUILTIN, kNoExtraICState, \ | 184 TFS(NewRestParameterElements, BUILTIN, kNoExtraICState, \ |
| 185 NewArgumentsElements) \ | 185 NewArgumentsElements) \ |
| 186 \ | 186 \ |
| 187 /* Debugger */ \ | 187 /* Debugger */ \ |
| 188 DBG(FrameDropper_LiveEdit) \ | 188 DBG(FrameDropperTrampoline) \ |
| 189 DBG(Return_DebugBreak) \ | 189 DBG(Return_DebugBreak) \ |
| 190 DBG(Slot_DebugBreak) \ | 190 DBG(Slot_DebugBreak) \ |
| 191 \ | 191 \ |
| 192 /* Type conversions */ \ | 192 /* Type conversions */ \ |
| 193 TFS(ToBoolean, BUILTIN, kNoExtraICState, TypeConversion) \ | 193 TFS(ToBoolean, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 194 TFS(OrdinaryToPrimitive_Number, BUILTIN, kNoExtraICState, TypeConversion) \ | 194 TFS(OrdinaryToPrimitive_Number, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 195 TFS(OrdinaryToPrimitive_String, BUILTIN, kNoExtraICState, TypeConversion) \ | 195 TFS(OrdinaryToPrimitive_String, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 196 TFS(NonPrimitiveToPrimitive_Default, BUILTIN, kNoExtraICState, \ | 196 TFS(NonPrimitiveToPrimitive_Default, BUILTIN, kNoExtraICState, \ |
| 197 TypeConversion) \ | 197 TypeConversion) \ |
| 198 TFS(NonPrimitiveToPrimitive_Number, BUILTIN, kNoExtraICState, \ | 198 TFS(NonPrimitiveToPrimitive_Number, BUILTIN, kNoExtraICState, \ |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 | 917 |
| 918 friend class Isolate; | 918 friend class Isolate; |
| 919 | 919 |
| 920 DISALLOW_COPY_AND_ASSIGN(Builtins); | 920 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 921 }; | 921 }; |
| 922 | 922 |
| 923 } // namespace internal | 923 } // namespace internal |
| 924 } // namespace v8 | 924 } // namespace v8 |
| 925 | 925 |
| 926 #endif // V8_BUILTINS_BUILTINS_H_ | 926 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |