1// Copyright 2006-2008 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Used for building without snapshots.
6
7#include "src/v8.h"
8
9#include "src/snapshot.h"
10
11namespace v8 {
12namespace internal {
13
14const byte Snapshot::data_[] = { 0 };
15const byte* Snapshot::raw_data_ = NULL;
16const int Snapshot::size_ = 0;
17const int Snapshot::raw_size_ = 0;
18const byte Snapshot::context_data_[] = { 0 };
19const byte* Snapshot::context_raw_data_ = NULL;
20const int Snapshot::context_size_ = 0;
21const int Snapshot::context_raw_size_ = 0;
22
23const int Snapshot::new_space_used_ = 0;
24const int Snapshot::pointer_space_used_ = 0;
25const int Snapshot::data_space_used_ = 0;
26const int Snapshot::code_space_used_ = 0;
27const int Snapshot::map_space_used_ = 0;
28const int Snapshot::cell_space_used_ = 0;
29const int Snapshot::property_cell_space_used_ = 0;
30
31const int Snapshot::context_new_space_used_ = 0;
32const int Snapshot::context_pointer_space_used_ = 0;
33const int Snapshot::context_data_space_used_ = 0;
34const int Snapshot::context_code_space_used_ = 0;
35const int Snapshot::context_map_space_used_ = 0;
36const int Snapshot::context_cell_space_used_ = 0;
37const int Snapshot::context_property_cell_space_used_ = 0;
38
39} }  // namespace v8::internal
40