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