llvm/llvm/tools/llvm-jitlink/llvm-jitlink-coff.cpp

//===--- llvm-jitlink-coff.cpp -- COFF parsing support for llvm-jitlink ---===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// COFF parsing support for llvm-jitlink.
//
//===----------------------------------------------------------------------===//

#include "llvm-jitlink.h"

#include "llvm/Support/Error.h"
#include "llvm/Support/Path.h"

#define DEBUG_TYPE

usingnamespacellvm;
usingnamespacellvm::jitlink;

static bool isCOFFGOTSection(Section &S) {}

static bool isCOFFStubsSection(Section &S) {}

static Expected<Edge &> getFirstRelocationEdge(LinkGraph &G, Block &B) {}

static Expected<Symbol &> getCOFFGOTTarget(LinkGraph &G, Block &B) {}

static Expected<Symbol &> getCOFFStubTarget(LinkGraph &G, Block &B) {}

namespace llvm {
Error registerCOFFGraphInfo(Session &S, LinkGraph &G) {}

} // end namespace llvm