| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 2185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2196 | 2196 |
| 2197 // implementation of ObjectIterator. | 2197 // implementation of ObjectIterator. |
| 2198 virtual HeapObject* next_object() { return next(); } | 2198 virtual HeapObject* next_object() { return next(); } |
| 2199 | 2199 |
| 2200 private: | 2200 private: |
| 2201 LargeObjectChunk* current_; | 2201 LargeObjectChunk* current_; |
| 2202 HeapObjectCallback size_func_; | 2202 HeapObjectCallback size_func_; |
| 2203 }; | 2203 }; |
| 2204 | 2204 |
| 2205 | 2205 |
| 2206 #ifdef DEBUG |
| 2207 struct CommentStatistic { |
| 2208 const char* comment; |
| 2209 int size; |
| 2210 int count; |
| 2211 void Clear() { |
| 2212 comment = NULL; |
| 2213 size = 0; |
| 2214 count = 0; |
| 2215 } |
| 2216 // Must be small, since an iteration is used for lookup. |
| 2217 static const int kMaxComments = 64; |
| 2218 }; |
| 2219 #endif |
| 2220 |
| 2221 |
| 2206 } } // namespace v8::internal | 2222 } } // namespace v8::internal |
| 2207 | 2223 |
| 2208 #endif // V8_SPACES_H_ | 2224 #endif // V8_SPACES_H_ |
| OLD | NEW |