56a486c322
- this avoids using relative include paths which are forbidden by the style guide - makes the code more readable since it's clear which header is meant - allows for starting to use checkdeps BUG=none R=jkummerow@chromium.org, danno@chromium.org LOG=n Review URL: https://codereview.chromium.org/304153016 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21625 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Used for building without snapshots.
|
|
|
|
#include "src/v8.h"
|
|
|
|
#include "src/snapshot.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
const byte Snapshot::data_[] = { 0 };
|
|
const byte* Snapshot::raw_data_ = NULL;
|
|
const int Snapshot::size_ = 0;
|
|
const int Snapshot::raw_size_ = 0;
|
|
const byte Snapshot::context_data_[] = { 0 };
|
|
const byte* Snapshot::context_raw_data_ = NULL;
|
|
const int Snapshot::context_size_ = 0;
|
|
const int Snapshot::context_raw_size_ = 0;
|
|
|
|
const int Snapshot::new_space_used_ = 0;
|
|
const int Snapshot::pointer_space_used_ = 0;
|
|
const int Snapshot::data_space_used_ = 0;
|
|
const int Snapshot::code_space_used_ = 0;
|
|
const int Snapshot::map_space_used_ = 0;
|
|
const int Snapshot::cell_space_used_ = 0;
|
|
const int Snapshot::property_cell_space_used_ = 0;
|
|
|
|
const int Snapshot::context_new_space_used_ = 0;
|
|
const int Snapshot::context_pointer_space_used_ = 0;
|
|
const int Snapshot::context_data_space_used_ = 0;
|
|
const int Snapshot::context_code_space_used_ = 0;
|
|
const int Snapshot::context_map_space_used_ = 0;
|
|
const int Snapshot::context_cell_space_used_ = 0;
|
|
const int Snapshot::context_property_cell_space_used_ = 0;
|
|
|
|
} } // namespace v8::internal
|