23ac686ff8
Rename ZoneTypeCache to TypeCache and use a single shared (immutable) instance consistently to cache the most commonly used types. Also serves as a chokepoint for defining those types, so we don't repeat the definition (and possible bugs) in various places. R=jarin@chromium.org Review URL: https://codereview.chromium.org/1409763004 Cr-Commit-Position: refs/heads/master@{#31631}
25 lines
516 B
C++
25 lines
516 B
C++
// Copyright 2015 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.
|
|
|
|
#include "src/type-cache.h"
|
|
|
|
#include "src/base/lazy-instance.h"
|
|
#include "src/types-inl.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
namespace {
|
|
|
|
base::LazyInstance<TypeCache>::type kCache = LAZY_INSTANCE_INITIALIZER;
|
|
|
|
} // namespace
|
|
|
|
|
|
// static
|
|
TypeCache const& TypeCache::Get() { return kCache.Get(); }
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|