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

Side by Side Diff: src/objects-debug.cc

Issue 2238893002: [debugger] separate break point info from code instrumentation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 4 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
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('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/objects.h" 5 #include "src/objects.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/disasm.h" 8 #include "src/disasm.h"
9 #include "src/disassembler.h" 9 #include "src/disassembler.h"
10 #include "src/field-type.h" 10 #include "src/field-type.h"
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after
1029 CHECK(e->IsUndefined(isolate)); 1029 CHECK(e->IsUndefined(isolate));
1030 } 1030 }
1031 } 1031 }
1032 } 1032 }
1033 } 1033 }
1034 1034
1035 1035
1036 void DebugInfo::DebugInfoVerify() { 1036 void DebugInfo::DebugInfoVerify() {
1037 CHECK(IsDebugInfo()); 1037 CHECK(IsDebugInfo());
1038 VerifyPointer(shared()); 1038 VerifyPointer(shared());
1039 VerifyPointer(abstract_code()); 1039 VerifyPointer(debug_bytecode_array());
1040 VerifyPointer(break_points()); 1040 VerifyPointer(break_points());
1041 } 1041 }
1042 1042
1043 1043
1044 void BreakPointInfo::BreakPointInfoVerify() { 1044 void BreakPointInfo::BreakPointInfoVerify() {
1045 CHECK(IsBreakPointInfo()); 1045 CHECK(IsBreakPointInfo());
1046 VerifyPointer(break_point_objects()); 1046 VerifyPointer(break_point_objects());
1047 } 1047 }
1048 #endif // VERIFY_HEAP 1048 #endif // VERIFY_HEAP
1049 1049
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 1334
1335 // Both are done at the same time. 1335 // Both are done at the same time.
1336 CHECK_EQ(new_it.done(), old_it.done()); 1336 CHECK_EQ(new_it.done(), old_it.done());
1337 } 1337 }
1338 1338
1339 1339
1340 #endif // DEBUG 1340 #endif // DEBUG
1341 1341
1342 } // namespace internal 1342 } // namespace internal
1343 } // namespace v8 1343 } // namespace v8
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698