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

Side by Side Diff: src/string-stream.h

Issue 67197: Start addressing massive arrays on the stack. There is hardly ever... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 8 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/runtime.cc ('k') | src/string-stream.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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 static const int kInitialCapacity = 16; 155 static const int kInitialCapacity = 16;
156 156
157 private: 157 private:
158 void PrintObject(Object* obj); 158 void PrintObject(Object* obj);
159 159
160 StringAllocator* allocator_; 160 StringAllocator* allocator_;
161 unsigned capacity_; 161 unsigned capacity_;
162 unsigned length_; // does not include terminating 0-character 162 unsigned length_; // does not include terminating 0-character
163 char* buffer_; 163 char* buffer_;
164 164
165 bool full() const { return (capacity_ - length_) == 1; }
165 int space() const { return capacity_ - length_; } 166 int space() const { return capacity_ - length_; }
166 char* cursor() const { return buffer_ + length_; }
167 167
168 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream); 168 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
169 }; 169 };
170 170
171 171
172 } } // namespace v8::internal 172 } } // namespace v8::internal
173 173
174 #endif // V8_STRING_STREAM_H_ 174 #endif // V8_STRING_STREAM_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/string-stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698