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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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<Address>(&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 Loading... |
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_ |
OLD | NEW |