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

Side by Side Diff: src/builtins.cc

Issue 1491743005: [debugger] do not predict step in target for liveedit. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@liveeditstep
Patch Set: do not prepare stepping if we are not in the debugger 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/builtins.h ('k') | src/debug/arm/debug-arm.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #include "src/builtins.h" 5 #include "src/builtins.h"
6 6
7 #include "src/api.h" 7 #include "src/api.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/base/once.h" 10 #include "src/base/once.h"
(...skipping 2257 matching lines...) Expand 10 before | Expand all | Expand 10 after
2268 DebugCodegen::SAVE_RESULT_REGISTER); 2268 DebugCodegen::SAVE_RESULT_REGISTER);
2269 } 2269 }
2270 2270
2271 2271
2272 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { 2272 static void Generate_Slot_DebugBreak(MacroAssembler* masm) {
2273 DebugCodegen::GenerateDebugBreakStub(masm, 2273 DebugCodegen::GenerateDebugBreakStub(masm,
2274 DebugCodegen::IGNORE_RESULT_REGISTER); 2274 DebugCodegen::IGNORE_RESULT_REGISTER);
2275 } 2275 }
2276 2276
2277 2277
2278 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) {
2279 DebugCodegen::GeneratePlainReturnLiveEdit(masm);
2280 }
2281
2282
2283 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { 2278 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
2284 DebugCodegen::GenerateFrameDropperLiveEdit(masm); 2279 DebugCodegen::GenerateFrameDropperLiveEdit(masm);
2285 } 2280 }
2286 2281
2287 2282
2288 Builtins::Builtins() : initialized_(false) { 2283 Builtins::Builtins() : initialized_(false) {
2289 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); 2284 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count);
2290 memset(names_, 0, sizeof(names_[0]) * builtin_count); 2285 memset(names_, 0, sizeof(names_[0]) * builtin_count);
2291 } 2286 }
2292 2287
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2502 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 2497 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
2503 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 2498 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
2504 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 2499 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
2505 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 2500 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
2506 #undef DEFINE_BUILTIN_ACCESSOR_C 2501 #undef DEFINE_BUILTIN_ACCESSOR_C
2507 #undef DEFINE_BUILTIN_ACCESSOR_A 2502 #undef DEFINE_BUILTIN_ACCESSOR_A
2508 2503
2509 2504
2510 } // namespace internal 2505 } // namespace internal
2511 } // namespace v8 2506 } // namespace v8
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/debug/arm/debug-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698