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

Side by Side Diff: src/snapshot.h

Issue 11028027: Revert trunk to bleeding_edge at r12484 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 2 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/snapshot-common.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 static const byte data_[]; 70 static const byte data_[];
71 static const byte* raw_data_; 71 static const byte* raw_data_;
72 static const byte context_data_[]; 72 static const byte context_data_[];
73 static const byte* context_raw_data_; 73 static const byte* context_raw_data_;
74 static const int new_space_used_; 74 static const int new_space_used_;
75 static const int pointer_space_used_; 75 static const int pointer_space_used_;
76 static const int data_space_used_; 76 static const int data_space_used_;
77 static const int code_space_used_; 77 static const int code_space_used_;
78 static const int map_space_used_; 78 static const int map_space_used_;
79 static const int cell_space_used_; 79 static const int cell_space_used_;
80 static const int context_new_space_used_; 80 static const int large_space_used_;
81 static const int context_pointer_space_used_;
82 static const int context_data_space_used_;
83 static const int context_code_space_used_;
84 static const int context_map_space_used_;
85 static const int context_cell_space_used_;
86 static const int size_; 81 static const int size_;
87 static const int raw_size_; 82 static const int raw_size_;
88 static const int context_size_; 83 static const int context_size_;
89 static const int context_raw_size_; 84 static const int context_raw_size_;
90 85
91 static void ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer); 86 static bool Deserialize(const byte* content, int len);
92 87
93 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); 88 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
94 }; 89 };
95 90
96 } } // namespace v8::internal 91 } } // namespace v8::internal
97 92
98 #endif // V8_SNAPSHOT_H_ 93 #endif // V8_SNAPSHOT_H_
OLDNEW
« no previous file with comments | « src/serialize.cc ('k') | src/snapshot-common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698