| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 CopyFastSmiOrObjectElements) \ | 185 CopyFastSmiOrObjectElements) \ |
| 186 TFS(GrowFastDoubleElements, BUILTIN, kNoExtraICState, GrowArrayElements) \ | 186 TFS(GrowFastDoubleElements, BUILTIN, kNoExtraICState, GrowArrayElements) \ |
| 187 TFS(GrowFastSmiOrObjectElements, BUILTIN, kNoExtraICState, \ | 187 TFS(GrowFastSmiOrObjectElements, BUILTIN, kNoExtraICState, \ |
| 188 GrowArrayElements) \ | 188 GrowArrayElements) \ |
| 189 TFS(NewUnmappedArgumentsElements, BUILTIN, kNoExtraICState, \ | 189 TFS(NewUnmappedArgumentsElements, BUILTIN, kNoExtraICState, \ |
| 190 NewArgumentsElements) \ | 190 NewArgumentsElements) \ |
| 191 TFS(NewRestParameterElements, BUILTIN, kNoExtraICState, \ | 191 TFS(NewRestParameterElements, BUILTIN, kNoExtraICState, \ |
| 192 NewArgumentsElements) \ | 192 NewArgumentsElements) \ |
| 193 \ | 193 \ |
| 194 /* Debugger */ \ | 194 /* Debugger */ \ |
| 195 DBG(FrameDropper_LiveEdit) \ | 195 DBG(FrameDropperTrampoline) \ |
| 196 DBG(HandleDebuggerStatement) \ |
| 196 DBG(Return_DebugBreak) \ | 197 DBG(Return_DebugBreak) \ |
| 197 DBG(Slot_DebugBreak) \ | 198 DBG(Slot_DebugBreak) \ |
| 198 \ | 199 \ |
| 199 /* Type conversions */ \ | 200 /* Type conversions */ \ |
| 200 TFS(ToBoolean, BUILTIN, kNoExtraICState, TypeConversion) \ | 201 TFS(ToBoolean, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 201 TFS(OrdinaryToPrimitive_Number, BUILTIN, kNoExtraICState, TypeConversion) \ | 202 TFS(OrdinaryToPrimitive_Number, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 202 TFS(OrdinaryToPrimitive_String, BUILTIN, kNoExtraICState, TypeConversion) \ | 203 TFS(OrdinaryToPrimitive_String, BUILTIN, kNoExtraICState, TypeConversion) \ |
| 203 TFS(NonPrimitiveToPrimitive_Default, BUILTIN, kNoExtraICState, \ | 204 TFS(NonPrimitiveToPrimitive_Default, BUILTIN, kNoExtraICState, \ |
| 204 TypeConversion) \ | 205 TypeConversion) \ |
| 205 TFS(NonPrimitiveToPrimitive_Number, BUILTIN, kNoExtraICState, \ | 206 TFS(NonPrimitiveToPrimitive_Number, BUILTIN, kNoExtraICState, \ |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 | 939 |
| 939 friend class Isolate; | 940 friend class Isolate; |
| 940 | 941 |
| 941 DISALLOW_COPY_AND_ASSIGN(Builtins); | 942 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 942 }; | 943 }; |
| 943 | 944 |
| 944 } // namespace internal | 945 } // namespace internal |
| 945 } // namespace v8 | 946 } // namespace v8 |
| 946 | 947 |
| 947 #endif // V8_BUILTINS_BUILTINS_H_ | 948 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |