// Copyright 2016 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. #ifndef V8_CODEGEN_EXTERNAL_REFERENCE_TABLE_H_ #define V8_CODEGEN_EXTERNAL_REFERENCE_TABLE_H_ #include "include/v8-memory-span.h" #include "src/builtins/accessors.h" #include "src/builtins/builtins.h" #include "src/codegen/external-reference.h" #include "src/logging/counters-definitions.h" namespace v8 { namespace internal { class Isolate; // ExternalReferenceTable is a helper class that defines the relationship // between external references and their encodings. It is used to build // hashmaps in ExternalReferenceEncoder and ExternalReferenceDecoder. class ExternalReferenceTable { … }; static_assert …; } // namespace internal } // namespace v8 #endif // V8_CODEGEN_EXTERNAL_REFERENCE_TABLE_H_