// Copyright 2014 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/compiler/common-node-cache.h" #include "src/codegen/external-reference.h" #include "src/compiler/node.h" namespace v8 { namespace internal { namespace compiler { Node** CommonNodeCache::FindExternalConstant(ExternalReference value) { … } Node** CommonNodeCache::FindHeapConstant(Handle<HeapObject> value) { … } void CommonNodeCache::GetCachedNodes(ZoneVector<Node*>* nodes) { … } } // namespace compiler } // namespace internal } // namespace v8