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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 property_cell_space_used_; |
80 static const int context_new_space_used_; | 81 static const int context_new_space_used_; |
81 static const int context_pointer_space_used_; | 82 static const int context_pointer_space_used_; |
82 static const int context_data_space_used_; | 83 static const int context_data_space_used_; |
83 static const int context_code_space_used_; | 84 static const int context_code_space_used_; |
84 static const int context_map_space_used_; | 85 static const int context_map_space_used_; |
85 static const int context_cell_space_used_; | 86 static const int context_cell_space_used_; |
| 87 static const int context_property_cell_space_used_; |
86 static const int size_; | 88 static const int size_; |
87 static const int raw_size_; | 89 static const int raw_size_; |
88 static const int context_size_; | 90 static const int context_size_; |
89 static const int context_raw_size_; | 91 static const int context_raw_size_; |
90 | 92 |
91 static void ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer); | 93 static void ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer); |
92 | 94 |
93 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); | 95 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); |
94 }; | 96 }; |
95 | 97 |
96 } } // namespace v8::internal | 98 } } // namespace v8::internal |
97 | 99 |
98 #endif // V8_SNAPSHOT_H_ | 100 #endif // V8_SNAPSHOT_H_ |
OLD | NEW |