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

Side by Side Diff: Source/wtf/HashTable.h

Issue 197343003: Fix PersistentHeapHashMap to work with stack allocated, heap backed weak collections (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update comments. Created 6 years, 9 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
« no previous file with comments | « Source/heap/Visitor.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 David Levin <levin@chromium.org> 3 * Copyright (C) 2008 David Levin <levin@chromium.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 // the backing unmarked. If the backing is found in any other way than 1064 // the backing unmarked. If the backing is found in any other way than
1065 // through its HashTable (ie from an iterator) then the mark bit will 1065 // through its HashTable (ie from an iterator) then the mark bit will
1066 // be set and the pointers will be marked strongly, avoiding problems 1066 // be set and the pointers will be marked strongly, avoiding problems
1067 // with iterating over things that disappear due to weak processing 1067 // with iterating over things that disappear due to weak processing
1068 // while we are iterating over them. The weakProcessing callback will 1068 // while we are iterating over them. The weakProcessing callback will
1069 // mark the backing as a void pointer, and will perform weak processing 1069 // mark the backing as a void pointer, and will perform weak processing
1070 // if needed. 1070 // if needed.
1071 if (!Traits::isWeak) 1071 if (!Traits::isWeak)
1072 Allocator::markNoTracing(visitor, m_table); 1072 Allocator::markNoTracing(visitor, m_table);
1073 else 1073 else
1074 Allocator::registerWeakMembers(visitor, this, WeakProcessingHashTabl eHelper<Traits::isWeak, Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::process); 1074 Allocator::registerWeakMembers(visitor, this, m_table, WeakProcessin gHashTableHelper<Traits::isWeak, Key, Value, Extractor, HashFunctions, Traits, K eyTraits, Allocator>::process);
1075 if (ShouldBeTraced<Traits>::value) { 1075 if (ShouldBeTraced<Traits>::value) {
1076 for (ValueType* element = m_table + m_tableSize - 1; element >= m_ta ble; element--) { 1076 for (ValueType* element = m_table + m_tableSize - 1; element >= m_ta ble; element--) {
1077 if (!isEmptyOrDeletedBucket(*element)) 1077 if (!isEmptyOrDeletedBucket(*element))
1078 Allocator::template trace<ValueType, Traits>(visitor, *eleme nt); 1078 Allocator::template trace<ValueType, Traits>(visitor, *eleme nt);
1079 } 1079 }
1080 } 1080 }
1081 } 1081 }
1082 1082
1083 // iterator adapters 1083 // iterator adapters
1084 1084
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 inline bool operator!=(const HashTableIteratorAdapter<T, U>& a, const HashTa bleConstIteratorAdapter<T, U>& b) 1168 inline bool operator!=(const HashTableIteratorAdapter<T, U>& a, const HashTa bleConstIteratorAdapter<T, U>& b)
1169 { 1169 {
1170 return a.m_impl != b.m_impl; 1170 return a.m_impl != b.m_impl;
1171 } 1171 }
1172 1172
1173 } // namespace WTF 1173 } // namespace WTF
1174 1174
1175 #include "wtf/HashIterators.h" 1175 #include "wtf/HashIterators.h"
1176 1176
1177 #endif // WTF_HashTable_h 1177 #endif // WTF_HashTable_h
OLDNEW
« no previous file with comments | « Source/heap/Visitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698