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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 } else { | 1001 } else { |
1002 ASSERT(e->IsUndefined()); | 1002 ASSERT(e->IsUndefined()); |
1003 } | 1003 } |
1004 } | 1004 } |
1005 } | 1005 } |
1006 } | 1006 } |
1007 | 1007 |
1008 | 1008 |
1009 void Map::ZapTransitions() { | 1009 void Map::ZapTransitions() { |
1010 TransitionArray* transition_array = transitions(); | 1010 TransitionArray* transition_array = transitions(); |
1011 if (transition_array == NULL) return; | |
1012 MemsetPointer(transition_array->data_start(), | 1011 MemsetPointer(transition_array->data_start(), |
1013 GetHeap()->the_hole_value(), | 1012 GetHeap()->the_hole_value(), |
1014 transition_array->length()); | 1013 transition_array->length()); |
1015 } | 1014 } |
1016 | 1015 |
1017 | 1016 |
1018 void Map::ZapPrototypeTransitions() { | 1017 void Map::ZapPrototypeTransitions() { |
1019 FixedArray* proto_transitions = prototype_transitions(); | 1018 FixedArray* proto_transitions = prototype_transitions(); |
1020 MemsetPointer(proto_transitions->data_start(), | 1019 MemsetPointer(proto_transitions->data_start(), |
1021 GetHeap()->the_hole_value(), | 1020 GetHeap()->the_hole_value(), |
1022 proto_transitions->length()); | 1021 proto_transitions->length()); |
1023 } | 1022 } |
1024 | 1023 |
1025 | 1024 |
1026 #endif // DEBUG | 1025 #endif // DEBUG |
1027 | 1026 |
1028 } } // namespace v8::internal | 1027 } } // namespace v8::internal |
OLD | NEW |