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/serialize.h

Issue 18312: Writing snapshot.cc in a form that can be compiled by the crosstool compiler.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 11 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/mksnapshot.cc ('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 // 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 USE(c); 218 USE(c);
219 ASSERT(c == expected); 219 ASSERT(c == expected);
220 } 220 }
221 221
222 int GetC() { 222 int GetC() {
223 if (str_ >= end_) return EOF; 223 if (str_ >= end_) return EOF;
224 return *str_++; 224 return *str_++;
225 } 225 }
226 226
227 int GetInt() { 227 int GetInt() {
228 int result = *reinterpret_cast<const int*>(str_); 228 int result;
229 str_ += sizeof(result); 229 GetBytes(reinterpret_cast<byte*>(&result), sizeof(result));
230 return result; 230 return result;
231 } 231 }
232 232
233 void GetBytes(Address a, int size) { 233 void GetBytes(Address a, int size) {
234 ASSERT(str_ + size <= end_); 234 ASSERT(str_ + size <= end_);
235 memcpy(a, str_, size); 235 memcpy(a, str_, size);
236 str_ += size; 236 str_ += size;
237 } 237 }
238 238
239 char* GetString() { 239 char* GetString() {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 #ifdef DEBUG 325 #ifdef DEBUG
326 bool expect_debug_information_; 326 bool expect_debug_information_;
327 #endif 327 #endif
328 328
329 DISALLOW_COPY_AND_ASSIGN(Deserializer); 329 DISALLOW_COPY_AND_ASSIGN(Deserializer);
330 }; 330 };
331 331
332 } } // namespace v8::internal 332 } } // namespace v8::internal
333 333
334 #endif // V8_SERIALIZE_H_ 334 #endif // V8_SERIALIZE_H_
OLDNEW
« no previous file with comments | « src/mksnapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698