Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: src/builtins/builtins.h

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/bailout-reason.h ('k') | src/builtins/builtins-debug.cc » ('j') | src/debug/debug.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698