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

Side by Side Diff: src/builtins.h

Issue 1494143002: Revert of [debugger] do not predict step in target for liveedit. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@liveeditstep
Patch Set: Created 5 years 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
« no previous file with comments | « src/assembler.cc ('k') | src/builtins.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/handles.h" 8 #include "src/handles.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 V(StoreIC_Slow, STORE_IC) \ 179 V(StoreIC_Slow, STORE_IC) \
180 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ 180 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
181 V(LoadIC_Normal, LOAD_IC) \ 181 V(LoadIC_Normal, LOAD_IC) \
182 V(LoadIC_Normal_Strong, LOAD_IC) \ 182 V(LoadIC_Normal_Strong, LOAD_IC) \
183 V(StoreIC_Normal, STORE_IC) 183 V(StoreIC_Normal, STORE_IC)
184 184
185 // Define list of builtins used by the debugger implemented in assembly. 185 // Define list of builtins used by the debugger implemented in assembly.
186 #define BUILTIN_LIST_DEBUG_A(V) \ 186 #define BUILTIN_LIST_DEBUG_A(V) \
187 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ 187 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
188 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ 188 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
189 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \
189 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) 190 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState)
190 191
191 192
192 class BuiltinFunctionTable; 193 class BuiltinFunctionTable;
193 class ObjectVisitor; 194 class ObjectVisitor;
194 195
195 196
196 class Builtins { 197 class Builtins {
197 public: 198 public:
198 ~Builtins(); 199 ~Builtins();
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 friend class BuiltinFunctionTable; 376 friend class BuiltinFunctionTable;
376 friend class Isolate; 377 friend class Isolate;
377 378
378 DISALLOW_COPY_AND_ASSIGN(Builtins); 379 DISALLOW_COPY_AND_ASSIGN(Builtins);
379 }; 380 };
380 381
381 } // namespace internal 382 } // namespace internal
382 } // namespace v8 383 } // namespace v8
383 384
384 #endif // V8_BUILTINS_H_ 385 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698