1 //===-- AMDGPUAlwaysInlinePass.cpp - Promote Allocas ----------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 /// This pass marks all internal functions as always_inline and creates
12 /// duplicates of all other functions a marks the duplicates as always_inline.
14 //===----------------------------------------------------------------------===//
17 #include "llvm/IR/Module.h"
18 #include "llvm/Transforms/Utils/Cloning.h"
24 class AMDGPUAlwaysInline : public ModulePass {
28 AMDGPUAlwaysInline() : ModulePass(ID) { }
29 bool runOnModule(Module &M) override;
30 const char *getPassName() const override { return "AMDGPU Always Inline Pass"; }
33 } // End anonymous namespace
35 char AMDGPUAlwaysInline::ID = 0;
37 bool AMDGPUAlwaysInline::runOnModule(Module &M) {
38 std::vector<Function *> FuncsToClone;
40 for (Function &F : M) {
41 if (!F.hasLocalLinkage() && !F.isDeclaration() && !F.use_empty() &&
42 !F.hasFnAttribute(Attribute::NoInline))
43 FuncsToClone.push_back(&F);
46 for (Function *F : FuncsToClone) {
47 ValueToValueMapTy VMap;
48 Function *NewFunc = CloneFunction(F, VMap, false);
49 NewFunc->setLinkage(GlobalValue::InternalLinkage);
50 M.getFunctionList().push_back(NewFunc);
51 F->replaceAllUsesWith(NewFunc);
54 for (Function &F : M) {
55 if (F.hasLocalLinkage() && !F.hasFnAttribute(Attribute::NoInline)) {
56 F.addFnAttr(Attribute::AlwaysInline);
62 ModulePass *llvm::createAMDGPUAlwaysInlinePass() {
63 return new AMDGPUAlwaysInline();