OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1222 Isolate* HeapObject::GetIsolate() { | 1222 Isolate* HeapObject::GetIsolate() { |
1223 return GetHeap()->isolate(); | 1223 return GetHeap()->isolate(); |
1224 } | 1224 } |
1225 | 1225 |
1226 | 1226 |
1227 Map* HeapObject::map() { | 1227 Map* HeapObject::map() { |
1228 return map_word().ToMap(); | 1228 return map_word().ToMap(); |
1229 } | 1229 } |
1230 | 1230 |
1231 | 1231 |
1232 void HeapObject::set_map(Map* value) { | 1232 void HeapObject::set_map(Map* value, WriteBarrierMode mode) { |
1233 set_map_word(MapWord::FromMap(value)); | 1233 set_map_word(MapWord::FromMap(value)); |
1234 if (value != NULL) { | 1234 if (mode == UPDATE_WRITE_BARRIER && value != NULL) { |
1235 // TODO(1600) We are passing NULL as a slot because maps can never be on | 1235 // TODO(1600) We are passing NULL as a slot because maps can never be on |
1236 // evacuation candidate. | 1236 // evacuation candidate. |
1237 value->GetHeap()->incremental_marking()->RecordWrite(this, NULL, value); | 1237 value->GetHeap()->incremental_marking()->RecordWrite(this, NULL, value); |
1238 } | 1238 } |
1239 } | 1239 } |
1240 | 1240 |
1241 | 1241 |
1242 MapWord HeapObject::map_word() { | 1242 MapWord HeapObject::map_word() { |
1243 return MapWord(reinterpret_cast<uintptr_t>(READ_FIELD(this, kMapOffset))); | 1243 return MapWord(reinterpret_cast<uintptr_t>(READ_FIELD(this, kMapOffset))); |
1244 } | 1244 } |
(...skipping 3441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4686 #undef WRITE_INT_FIELD | 4686 #undef WRITE_INT_FIELD |
4687 #undef READ_SHORT_FIELD | 4687 #undef READ_SHORT_FIELD |
4688 #undef WRITE_SHORT_FIELD | 4688 #undef WRITE_SHORT_FIELD |
4689 #undef READ_BYTE_FIELD | 4689 #undef READ_BYTE_FIELD |
4690 #undef WRITE_BYTE_FIELD | 4690 #undef WRITE_BYTE_FIELD |
4691 | 4691 |
4692 | 4692 |
4693 } } // namespace v8::internal | 4693 } } // namespace v8::internal |
4694 | 4694 |
4695 #endif // V8_OBJECTS_INL_H_ | 4695 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |