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

Side by Side Diff: src/spaces.h

Issue 2862032: [Isolates] Move more statics (part IV) (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 10 years, 5 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 | « src/serialize.cc ('k') | src/spaces.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « src/serialize.cc ('k') | src/spaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698