OLD | NEW |
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 Loading... |
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 |
OLD | NEW |