chromium/v8/src/snapshot/embedded/embedded-data-inl.h

// Copyright 2022 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_SNAPSHOT_EMBEDDED_EMBEDDED_DATA_INL_H_
#define V8_SNAPSHOT_EMBEDDED_EMBEDDED_DATA_INL_H_

#include "src/snapshot/embedded/embedded-data.h"

namespace v8 {
namespace internal {

Address EmbeddedData::InstructionStartOf(Builtin builtin) const {}

Address EmbeddedData::InstructionEndOf(Builtin builtin) const {}

uint32_t EmbeddedData::InstructionSizeOf(Builtin builtin) const {}

Address EmbeddedData::MetadataStartOf(Builtin builtin) const {}

Address EmbeddedData::InstructionStartOfBytecodeHandlers() const {}

Address EmbeddedData::InstructionEndOfBytecodeHandlers() const {}

uint32_t EmbeddedData::PaddedInstructionSizeOf(Builtin builtin) const {}

}  // namespace internal
}  // namespace v8

#endif  // V8_SNAPSHOT_EMBEDDED_EMBEDDED_DATA_INL_H_