LLVM 19.0.0git
Linker.h
Go to the documentation of this file.
1//===- Linker.h - Module Linker Interface -----------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LINKER_LINKER_H
10#define LLVM_LINKER_LINKER_H
11
12#include "llvm/ADT/StringSet.h"
13#include "llvm/Linker/IRMover.h"
14
15namespace llvm {
16class Module;
17
18/// This class provides the core functionality of linking in LLVM. It keeps a
19/// pointer to the merged module so far. It doesn't take ownership of the
20/// module since it is assumed that the user of this class will want to do
21/// something with it after the linking.
22class Linker {
23 IRMover Mover;
24
25public:
26 enum Flags {
27 None = 0,
28 OverrideFromSrc = (1 << 0),
29 LinkOnlyNeeded = (1 << 1),
30 };
31
32 Linker(Module &M);
33
34 /// Link \p Src into the composite.
35 ///
36 /// Passing OverrideSymbols as true will have symbols from Src
37 /// shadow those in the Dest.
38 ///
39 /// Passing InternalizeCallback will have the linker call the function with
40 /// the new module and a list of global value names to be internalized by the
41 /// callback.
42 ///
43 /// Returns true on error.
44 bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None,
45 std::function<void(Module &, const StringSet<> &)>
46 InternalizeCallback = {});
47
48 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
49 unsigned Flags = Flags::None,
50 std::function<void(Module &, const StringSet<> &)>
51 InternalizeCallback = {});
52};
53
54} // End llvm namespace
55
56#endif
Machine Check Debug Module
StringSet - A set-like wrapper for the StringMap.
This class provides the core functionality of linking in LLVM.
Definition: Linker.h:22
@ OverrideFromSrc
Definition: Linker.h:28
@ LinkOnlyNeeded
Definition: Linker.h:29
bool linkInModule(std::unique_ptr< Module > Src, unsigned Flags=Flags::None, std::function< void(Module &, const StringSet<> &)> InternalizeCallback={})
Link Src into the composite.
static bool linkModules(Module &Dest, std::unique_ptr< Module > Src, unsigned Flags=Flags::None, std::function< void(Module &, const StringSet<> &)> InternalizeCallback={})
This function links two modules together, with the resulting Dest module modified to be the composite...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
StringSet - A wrapper for StringMap that provides set-like functionality.
Definition: StringSet.h:23
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18