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

Side by Side Diff: src/builtins.cc

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/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 2157 matching lines...) Expand 10 before | Expand all | Expand 10 after
2168 DebugCodegen::SAVE_RESULT_REGISTER); 2168 DebugCodegen::SAVE_RESULT_REGISTER);
2169 } 2169 }
2170 2170
2171 2171
2172 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { 2172 static void Generate_Slot_DebugBreak(MacroAssembler* masm) {
2173 DebugCodegen::GenerateDebugBreakStub(masm, 2173 DebugCodegen::GenerateDebugBreakStub(masm,
2174 DebugCodegen::IGNORE_RESULT_REGISTER); 2174 DebugCodegen::IGNORE_RESULT_REGISTER);
2175 } 2175 }
2176 2176
2177 2177
2178 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) {
2179 DebugCodegen::GeneratePlainReturnLiveEdit(masm);
2180 }
2181
2182
2178 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { 2183 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
2179 DebugCodegen::GenerateFrameDropperLiveEdit(masm); 2184 DebugCodegen::GenerateFrameDropperLiveEdit(masm);
2180 } 2185 }
2181 2186
2182 2187
2183 Builtins::Builtins() : initialized_(false) { 2188 Builtins::Builtins() : initialized_(false) {
2184 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); 2189 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count);
2185 memset(names_, 0, sizeof(names_[0]) * builtin_count); 2190 memset(names_, 0, sizeof(names_[0]) * builtin_count);
2186 } 2191 }
2187 2192
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
2399 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 2404 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
2400 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 2405 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
2401 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 2406 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
2402 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 2407 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
2403 #undef DEFINE_BUILTIN_ACCESSOR_C 2408 #undef DEFINE_BUILTIN_ACCESSOR_C
2404 #undef DEFINE_BUILTIN_ACCESSOR_A 2409 #undef DEFINE_BUILTIN_ACCESSOR_A
2405 2410
2406 2411
2407 } // namespace internal 2412 } // namespace internal
2408 } // namespace v8 2413 } // 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