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

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

Issue 11085070: Enable --verify-heap in release mode (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: After rebase plus one new issue fix Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 Object* e = get(i); 995 Object* e = get(i);
996 if (e->IsMap()) { 996 if (e->IsMap()) {
997 Map::cast(e)->SharedMapVerify(); 997 Map::cast(e)->SharedMapVerify();
998 } else { 998 } else {
999 ASSERT(e->IsUndefined()); 999 ASSERT(e->IsUndefined());
1000 } 1000 }
1001 } 1001 }
1002 } 1002 }
1003 } 1003 }
1004 1004
1005
1006 void Map::ZapTransitions() {
1007 TransitionArray* transition_array = transitions();
1008 MemsetPointer(transition_array->data_start(),
1009 GetHeap()->the_hole_value(),
1010 transition_array->length());
1011 }
1012
1013
1014 void Map::ZapPrototypeTransitions() {
1015 FixedArray* proto_transitions = GetPrototypeTransitions();
1016 MemsetPointer(proto_transitions->data_start(),
1017 GetHeap()->the_hole_value(),
1018 proto_transitions->length());
1019 }
1020
1021
1022 #endif // DEBUG 1005 #endif // DEBUG
1023 1006
1024 } } // namespace v8::internal 1007 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698