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

Side by Side Diff: src/builtins.h

Issue 1498523008: 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/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 V(StoreIC_Slow, STORE_IC) \ 194 V(StoreIC_Slow, STORE_IC) \
195 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ 195 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
196 V(LoadIC_Normal, LOAD_IC) \ 196 V(LoadIC_Normal, LOAD_IC) \
197 V(LoadIC_Normal_Strong, LOAD_IC) \ 197 V(LoadIC_Normal_Strong, LOAD_IC) \
198 V(StoreIC_Normal, STORE_IC) 198 V(StoreIC_Normal, STORE_IC)
199 199
200 // Define list of builtins used by the debugger implemented in assembly. 200 // Define list of builtins used by the debugger implemented in assembly.
201 #define BUILTIN_LIST_DEBUG_A(V) \ 201 #define BUILTIN_LIST_DEBUG_A(V) \
202 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ 202 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
203 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \ 203 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
204 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \
204 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) 205 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState)
205 206
206 207
207 class BuiltinFunctionTable; 208 class BuiltinFunctionTable;
208 class ObjectVisitor; 209 class ObjectVisitor;
209 210
210 211
211 class Builtins { 212 class Builtins {
212 public: 213 public:
213 ~Builtins(); 214 ~Builtins();
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 friend class BuiltinFunctionTable; 391 friend class BuiltinFunctionTable;
391 friend class Isolate; 392 friend class Isolate;
392 393
393 DISALLOW_COPY_AND_ASSIGN(Builtins); 394 DISALLOW_COPY_AND_ASSIGN(Builtins);
394 }; 395 };
395 396
396 } // namespace internal 397 } // namespace internal
397 } // namespace v8 398 } // namespace v8
398 399
399 #endif // V8_BUILTINS_H_ 400 #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