summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
blob: e75092b2485eca8a77913defb30edfd213e9e5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include "llvm/ADT/Triple.h"
#include "llvm/ExecutionEngine/Orc/IndirectionUtils.h"
#include "llvm/ExecutionEngine/Orc/CloneSubModule.h"
#include "llvm/IR/CallSite.h"
#include "llvm/IR/IRBuilder.h"
#include <set>

using namespace llvm;

namespace llvm {

JITIndirections makeCallsSingleIndirect(
    Module &M, const std::function<bool(const Function &)> &ShouldIndirect,
    const char *JITImplSuffix, const char *JITAddrSuffix) {
  std::vector<Function *> Worklist;
  std::vector<std::string> FuncNames;

  for (auto &F : M)
    if (ShouldIndirect(F) && (F.user_begin() != F.user_end())) {
      Worklist.push_back(&F);
      FuncNames.push_back(F.getName());
    }

  for (auto *F : Worklist) {
    GlobalVariable *FImplAddr = new GlobalVariable(
        M, F->getType(), false, GlobalValue::ExternalLinkage,
        Constant::getNullValue(F->getType()), F->getName() + JITAddrSuffix,
        nullptr, GlobalValue::NotThreadLocal, 0, true);
    FImplAddr->setVisibility(GlobalValue::HiddenVisibility);

    for (auto *U : F->users()) {
      assert(isa<Instruction>(U) && "Cannot indirect non-instruction use");
      IRBuilder<> Builder(cast<Instruction>(U));
      U->replaceUsesOfWith(F, Builder.CreateLoad(FImplAddr));
    }
  }

  return JITIndirections(
      FuncNames, [=](StringRef S) -> std::string { return std::string(S); },
      [=](StringRef S)
          -> std::string { return std::string(S) + JITAddrSuffix; });
}

JITIndirections makeCallsDoubleIndirect(
    Module &M, const std::function<bool(const Function &)> &ShouldIndirect,
    const char *JITImplSuffix, const char *JITAddrSuffix) {

  std::vector<Function *> Worklist;
  std::vector<std::string> FuncNames;

  for (auto &F : M)
    if (!F.isDeclaration() && !F.hasAvailableExternallyLinkage() &&
        ShouldIndirect(F))
      Worklist.push_back(&F);

  for (auto *F : Worklist) {
    std::string OrigName = F->getName();
    F->setName(OrigName + JITImplSuffix);
    FuncNames.push_back(OrigName);

    GlobalVariable *FImplAddr = new GlobalVariable(
        M, F->getType(), false, GlobalValue::ExternalLinkage,
        Constant::getNullValue(F->getType()), OrigName + JITAddrSuffix, nullptr,
        GlobalValue::NotThreadLocal, 0, true);
    FImplAddr->setVisibility(GlobalValue::HiddenVisibility);

    Function *FRedirect =
        Function::Create(F->getFunctionType(), F->getLinkage(), OrigName, &M);

    F->replaceAllUsesWith(FRedirect);

    BasicBlock *EntryBlock =
        BasicBlock::Create(M.getContext(), "entry", FRedirect);

    IRBuilder<> Builder(EntryBlock);
    LoadInst *FImplLoadedAddr = Builder.CreateLoad(FImplAddr);

    std::vector<Value *> CallArgs;
    for (Value &Arg : FRedirect->args())
      CallArgs.push_back(&Arg);
    CallInst *Call = Builder.CreateCall(FImplLoadedAddr, CallArgs);
    Call->setTailCall();
    Builder.CreateRet(Call);
  }

  return JITIndirections(
      FuncNames, [=](StringRef S)
                     -> std::string { return std::string(S) + JITImplSuffix; },
      [=](StringRef S)
          -> std::string { return std::string(S) + JITAddrSuffix; });
}

std::vector<std::unique_ptr<Module>>
explode(const Module &OrigMod,
        const std::function<bool(const Function &)> &ShouldExtract) {

  std::vector<std::unique_ptr<Module>> NewModules;

  // Split all the globals, non-indirected functions, etc. into a single module.
  auto ExtractGlobalVars = [&](GlobalVariable &New, const GlobalVariable &Orig,
                               ValueToValueMapTy &VMap) {
    copyGVInitializer(New, Orig, VMap);
    if (New.getLinkage() == GlobalValue::PrivateLinkage) {
      New.setLinkage(GlobalValue::ExternalLinkage);
      New.setVisibility(GlobalValue::HiddenVisibility);
    }
  };

  auto ExtractNonImplFunctions =
      [&](Function &New, const Function &Orig, ValueToValueMapTy &VMap) {
        if (!ShouldExtract(New))
          copyFunctionBody(New, Orig, VMap);
      };

  NewModules.push_back(CloneSubModule(OrigMod, ExtractGlobalVars,
                                      ExtractNonImplFunctions, true));

  // Preserve initializers for Common linkage vars, and make private linkage
  // globals external: they are now provided by the globals module extracted
  // above.
  auto DropGlobalVars = [&](GlobalVariable &New, const GlobalVariable &Orig,
                            ValueToValueMapTy &VMap) {
    if (New.getLinkage() == GlobalValue::CommonLinkage)
      copyGVInitializer(New, Orig, VMap);
    else if (New.getLinkage() == GlobalValue::PrivateLinkage)
      New.setLinkage(GlobalValue::ExternalLinkage);
  };

  // Split each 'impl' function out in to its own module.
  for (const auto &Func : OrigMod) {
    if (Func.isDeclaration() || !ShouldExtract(Func))
      continue;

    auto ExtractNamedFunction =
        [&](Function &New, const Function &Orig, ValueToValueMapTy &VMap) {
          if (New.getName() == Func.getName())
            copyFunctionBody(New, Orig, VMap);
        };

    NewModules.push_back(
        CloneSubModule(OrigMod, DropGlobalVars, ExtractNamedFunction, false));
  }

  return NewModules;
}

std::vector<std::unique_ptr<Module>>
explode(const Module &OrigMod, const JITIndirections &Indirections) {
  std::set<std::string> ImplNames;

  for (const auto &FuncName : Indirections.IndirectedNames)
    ImplNames.insert(Indirections.GetImplName(FuncName));

  return explode(
      OrigMod, [&](const Function &F) { return ImplNames.count(F.getName()); });
}
}
OpenPOWER on IntegriCloud