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

Side by Side Diff: src/runtime/runtime-test.cc

Issue 2625053006: [debugging] Add %Verify() helper and check verify a HeapObject has a Map. (Closed)
Patch Set: added simple verification in release build Created 3 years, 11 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/runtime/runtime.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" 10 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h"
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 } 821 }
822 822
823 RUNTIME_FUNCTION(Runtime_ValidateWasmOrphanedInstance) { 823 RUNTIME_FUNCTION(Runtime_ValidateWasmOrphanedInstance) {
824 HandleScope shs(isolate); 824 HandleScope shs(isolate);
825 DCHECK_EQ(1, args.length()); 825 DCHECK_EQ(1, args.length());
826 CONVERT_ARG_HANDLE_CHECKED_2(WasmInstanceObject, instance, 0); 826 CONVERT_ARG_HANDLE_CHECKED_2(WasmInstanceObject, instance, 0);
827 wasm::testing::ValidateOrphanedInstance(isolate, instance); 827 wasm::testing::ValidateOrphanedInstance(isolate, instance);
828 return isolate->heap()->ToBoolean(true); 828 return isolate->heap()->ToBoolean(true);
829 } 829 }
830 830
831 RUNTIME_FUNCTION(Runtime_Verify) {
832 HandleScope shs(isolate);
833 DCHECK_EQ(1, args.length());
834 CONVERT_ARG_HANDLE_CHECKED(Object, object, 0);
835 #ifdef VERIFY_HEAP
836 object->ObjectVerify();
837 #else
838 CHECK(object->IsObject());
839 if (object->IsHeapObject()) {
840 CHECK(HeapObject::cast(*object)->map()->IsMap());
841 } else {
842 CHECK(object->IsSmi());
843 }
844 #endif
845 return isolate->heap()->ToBoolean(true);
846 }
847
831 } // namespace internal 848 } // namespace internal
832 } // namespace v8 849 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698