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

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

Issue 760883002: Add interceptor support for symbols (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix test Created 6 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/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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/disasm.h" 7 #include "src/disasm.h"
8 #include "src/disassembler.h" 8 #include "src/disassembler.h"
9 #include "src/heap/objects-visiting.h" 9 #include "src/heap/objects-visiting.h"
10 #include "src/jsregexp.h" 10 #include "src/jsregexp.h"
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 920
921 921
922 void InterceptorInfo::InterceptorInfoVerify() { 922 void InterceptorInfo::InterceptorInfoVerify() {
923 CHECK(IsInterceptorInfo()); 923 CHECK(IsInterceptorInfo());
924 VerifyPointer(getter()); 924 VerifyPointer(getter());
925 VerifyPointer(setter()); 925 VerifyPointer(setter());
926 VerifyPointer(query()); 926 VerifyPointer(query());
927 VerifyPointer(deleter()); 927 VerifyPointer(deleter());
928 VerifyPointer(enumerator()); 928 VerifyPointer(enumerator());
929 VerifyPointer(data()); 929 VerifyPointer(data());
930 VerifySmiField(kFlagsOffset);
930 } 931 }
931 932
932 933
933 void CallHandlerInfo::CallHandlerInfoVerify() { 934 void CallHandlerInfo::CallHandlerInfoVerify() {
934 CHECK(IsCallHandlerInfo()); 935 CHECK(IsCallHandlerInfo());
935 VerifyPointer(callback()); 936 VerifyPointer(callback());
936 VerifyPointer(data()); 937 VerifyPointer(data());
937 } 938 }
938 939
939 940
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 while (map != heap->roots_array_start()[i++]) { 1259 while (map != heap->roots_array_start()[i++]) {
1259 CHECK_LT(i, Heap::kStrongRootListLength); 1260 CHECK_LT(i, Heap::kStrongRootListLength);
1260 } 1261 }
1261 } 1262 }
1262 } 1263 }
1263 1264
1264 1265
1265 #endif // DEBUG 1266 #endif // DEBUG
1266 1267
1267 } } // namespace v8::internal 1268 } } // namespace v8::internal
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