llvm/bolt/lib/Core/AddressMap.cpp

//===- bolt/Core/AddressMap.cpp - Input-output Address Map ----------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "bolt/Core/AddressMap.h"
#include "bolt/Core/BinaryContext.h"
#include "bolt/Core/BinaryFunction.h"
#include "bolt/Core/BinarySection.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/Support/DataExtractor.h"

namespace llvm {
namespace bolt {

const char *const AddressMap::AddressSectionName =;
const char *const AddressMap::LabelSectionName =;

static void emitAddress(MCStreamer &Streamer, uint64_t InputAddress,
                        const MCSymbol *OutputLabel) {}

static void emitLabel(MCStreamer &Streamer, const MCSymbol *OutputLabel) {}

void AddressMap::emit(MCStreamer &Streamer, BinaryContext &BC) {}

std::optional<AddressMap> AddressMap::parse(BinaryContext &BC) {}

} // namespace bolt
} // namespace llvm