2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Used for building without snapshots.
|
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/v8.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/snapshot.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2009-01-26 10:21:09 +00:00
|
|
|
const byte Snapshot::data_[] = { 0 };
|
2011-04-29 12:08:33 +00:00
|
|
|
const byte* Snapshot::raw_data_ = NULL;
|
2010-03-23 11:40:38 +00:00
|
|
|
const int Snapshot::size_ = 0;
|
2011-04-29 12:08:33 +00:00
|
|
|
const int Snapshot::raw_size_ = 0;
|
2010-03-23 11:40:38 +00:00
|
|
|
const byte Snapshot::context_data_[] = { 0 };
|
2011-04-29 12:08:33 +00:00
|
|
|
const byte* Snapshot::context_raw_data_ = NULL;
|
2010-03-23 11:40:38 +00:00
|
|
|
const int Snapshot::context_size_ = 0;
|
2011-04-29 12:08:33 +00:00
|
|
|
const int Snapshot::context_raw_size_ = 0;
|
2010-03-23 11:40:38 +00:00
|
|
|
|
|
|
|
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;
|
2013-06-12 15:03:44 +00:00
|
|
|
const int Snapshot::property_cell_space_used_ = 0;
|
2012-09-14 11:16:56 +00:00
|
|
|
|
|
|
|
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;
|
2013-06-12 15:03:44 +00:00
|
|
|
const int Snapshot::context_property_cell_space_used_ = 0;
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
} } // namespace v8::internal
|