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

Side by Side Diff: src/objects-inl.h

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix names Created 7 years, 3 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 5984 matching lines...) Expand 10 before | Expand all | Expand 10 after
5995 } 5995 }
5996 5996
5997 5997
5998 template <int entrysize> 5998 template <int entrysize>
5999 MaybeObject* ObjectHashTableShape<entrysize>::AsObject(Heap* heap, 5999 MaybeObject* ObjectHashTableShape<entrysize>::AsObject(Heap* heap,
6000 Object* key) { 6000 Object* key) {
6001 return key; 6001 return key;
6002 } 6002 }
6003 6003
6004 6004
6005 template <int entrysize>
6006 bool WeakHashTableShape<entrysize>::IsMatch(Object* key, Object* other) {
6007 return key->SameValue(other);
6008 }
6009
6010
6011 template <int entrysize>
6012 uint32_t WeakHashTableShape<entrysize>::Hash(Object* key) {
6013 intptr_t hash = reinterpret_cast<intptr_t>(key);
6014 return (uint32_t)(hash & 0xFFFFFFFF);
6015 }
6016
6017
6018 template <int entrysize>
6019 uint32_t WeakHashTableShape<entrysize>::HashForObject(Object* key,
6020 Object* other) {
6021 intptr_t hash = reinterpret_cast<intptr_t>(other);
6022 return (uint32_t)(hash & 0xFFFFFFFF);
6023 }
6024
6025
6026 template <int entrysize>
6027 MaybeObject* WeakHashTableShape<entrysize>::AsObject(Heap* heap,
6028 Object* key) {
6029 return key;
6030 }
6031
6032
6005 void Map::ClearCodeCache(Heap* heap) { 6033 void Map::ClearCodeCache(Heap* heap) {
6006 // No write barrier is needed since empty_fixed_array is not in new space. 6034 // No write barrier is needed since empty_fixed_array is not in new space.
6007 // Please note this function is used during marking: 6035 // Please note this function is used during marking:
6008 // - MarkCompactCollector::MarkUnmarkedObject 6036 // - MarkCompactCollector::MarkUnmarkedObject
6009 // - IncrementalMarking::Step 6037 // - IncrementalMarking::Step
6010 ASSERT(!heap->InNewSpace(heap->empty_fixed_array())); 6038 ASSERT(!heap->InNewSpace(heap->empty_fixed_array()));
6011 WRITE_FIELD(this, kCodeCacheOffset, heap->empty_fixed_array()); 6039 WRITE_FIELD(this, kCodeCacheOffset, heap->empty_fixed_array());
6012 } 6040 }
6013 6041
6014 6042
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
6299 #undef WRITE_UINT32_FIELD 6327 #undef WRITE_UINT32_FIELD
6300 #undef READ_SHORT_FIELD 6328 #undef READ_SHORT_FIELD
6301 #undef WRITE_SHORT_FIELD 6329 #undef WRITE_SHORT_FIELD
6302 #undef READ_BYTE_FIELD 6330 #undef READ_BYTE_FIELD
6303 #undef WRITE_BYTE_FIELD 6331 #undef WRITE_BYTE_FIELD
6304 6332
6305 6333
6306 } } // namespace v8::internal 6334 } } // namespace v8::internal
6307 6335
6308 #endif // V8_OBJECTS_INL_H_ 6336 #endif // V8_OBJECTS_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698