LLVM  8.0.1
ForceFunctionAttrs.cpp
Go to the documentation of this file.
1 //===- ForceFunctionAttrs.cpp - Force function attrs for debugging --------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
11 #include "llvm/ADT/StringSwitch.h"
12 #include "llvm/IR/Function.h"
13 #include "llvm/IR/LLVMContext.h"
14 #include "llvm/IR/Module.h"
15 #include "llvm/Support/Debug.h"
17 using namespace llvm;
18 
19 #define DEBUG_TYPE "forceattrs"
20 
22  ForceAttributes("force-attribute", cl::Hidden,
23  cl::desc("Add an attribute to a function. This should be a "
24  "pair of 'function-name:attribute-name', for "
25  "example -force-attribute=foo:noinline. This "
26  "option can be specified multiple times."));
27 
30  .Case("alwaysinline", Attribute::AlwaysInline)
31  .Case("builtin", Attribute::Builtin)
32  .Case("cold", Attribute::Cold)
33  .Case("convergent", Attribute::Convergent)
34  .Case("inlinehint", Attribute::InlineHint)
35  .Case("jumptable", Attribute::JumpTable)
36  .Case("minsize", Attribute::MinSize)
37  .Case("naked", Attribute::Naked)
38  .Case("nobuiltin", Attribute::NoBuiltin)
39  .Case("noduplicate", Attribute::NoDuplicate)
40  .Case("noimplicitfloat", Attribute::NoImplicitFloat)
41  .Case("noinline", Attribute::NoInline)
42  .Case("nonlazybind", Attribute::NonLazyBind)
43  .Case("noredzone", Attribute::NoRedZone)
44  .Case("noreturn", Attribute::NoReturn)
45  .Case("nocf_check", Attribute::NoCfCheck)
46  .Case("norecurse", Attribute::NoRecurse)
47  .Case("nounwind", Attribute::NoUnwind)
48  .Case("optforfuzzing", Attribute::OptForFuzzing)
49  .Case("optnone", Attribute::OptimizeNone)
50  .Case("optsize", Attribute::OptimizeForSize)
51  .Case("readnone", Attribute::ReadNone)
52  .Case("readonly", Attribute::ReadOnly)
53  .Case("argmemonly", Attribute::ArgMemOnly)
54  .Case("returns_twice", Attribute::ReturnsTwice)
55  .Case("safestack", Attribute::SafeStack)
56  .Case("shadowcallstack", Attribute::ShadowCallStack)
57  .Case("sanitize_address", Attribute::SanitizeAddress)
58  .Case("sanitize_hwaddress", Attribute::SanitizeHWAddress)
59  .Case("sanitize_memory", Attribute::SanitizeMemory)
60  .Case("sanitize_thread", Attribute::SanitizeThread)
61  .Case("speculative_load_hardening", Attribute::SpeculativeLoadHardening)
64  .Case("sspstrong", Attribute::StackProtectStrong)
65  .Case("strictfp", Attribute::StrictFP)
66  .Case("uwtable", Attribute::UWTable)
68 }
69 
70 /// If F has any forced attributes given on the command line, add them.
72  for (auto &S : ForceAttributes) {
73  auto KV = StringRef(S).split(':');
74  if (KV.first != F.getName())
75  continue;
76 
77  auto Kind = parseAttrKind(KV.second);
78  if (Kind == Attribute::None) {
79  LLVM_DEBUG(dbgs() << "ForcedAttribute: " << KV.second
80  << " unknown or not handled!\n");
81  continue;
82  }
83  if (F.hasFnAttribute(Kind))
84  continue;
85  F.addFnAttr(Kind);
86  }
87 }
88 
91  if (ForceAttributes.empty())
92  return PreservedAnalyses::all();
93 
94  for (Function &F : M.functions())
96 
97  // Just conservatively invalidate analyses, this isn't likely to be important.
98  return PreservedAnalyses::none();
99 }
100 
101 namespace {
102 struct ForceFunctionAttrsLegacyPass : public ModulePass {
103  static char ID; // Pass identification, replacement for typeid
104  ForceFunctionAttrsLegacyPass() : ModulePass(ID) {
107  }
108 
109  bool runOnModule(Module &M) override {
110  if (ForceAttributes.empty())
111  return false;
112 
113  for (Function &F : M.functions())
115 
116  // Conservatively assume we changed something.
117  return true;
118  }
119 };
120 }
121 
123 INITIALIZE_PASS(ForceFunctionAttrsLegacyPass, "forceattrs",
124  "Force set function attributes", false, false)
125 
127  return new ForceFunctionAttrsLegacyPass();
128 }
Super simple passes to force specific function attrs from the commandline into the IR for debugging p...
Pass interface - Implemented by all &#39;passes&#39;.
Definition: Pass.h:81
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition: Function.h:321
F(f)
static void addForcedAttributes(Function &F)
If F has any forced attributes given on the command line, add them.
No attributes have been set.
Definition: Attributes.h:72
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE R Default(T Value)
Definition: StringSwitch.h:203
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: PassManager.h:157
A switch()-like statement whose cases are string literals.
Definition: StringSwitch.h:43
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:154
iterator_range< iterator > functions()
Definition: Module.h:606
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: PassManager.h:160
static Attribute::AttrKind parseAttrKind(StringRef Kind)
static cl::list< std::string > ForceAttributes("force-attribute", cl::Hidden, cl::desc("Add an attribute to a function. This should be a " "pair of 'function-name:attribute-name', for " "example -force-attribute=foo:noinline. This " "option can be specified multiple times."))
Module.h This file contains the declarations for the Module class.
LLVM_NODISCARD std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition: StringRef.h:727
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
LLVM_ATTRIBUTE_ALWAYS_INLINE StringSwitch & Case(StringLiteral S, T Value)
Definition: StringSwitch.h:70
PreservedAnalyses run(Module &M, ModuleAnalysisManager &)
INITIALIZE_PASS(ForceFunctionAttrsLegacyPass, "forceattrs", "Force set function attributes", false, false) Pass *llvm
StringRef getName() const
Return a constant reference to the value&#39;s name.
Definition: Value.cpp:214
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition: Pass.h:225
const unsigned Kind
void initializeForceFunctionAttrsLegacyPassPass(PassRegistry &)
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
Definition: Function.h:230
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
A container for analyses that lazily runs them and caches their results.
#define LLVM_DEBUG(X)
Definition: Debug.h:123
Pass * createForceFunctionAttrsLegacyPass()
Create a legacy pass manager instance of a pass to force function attrs.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results...
Definition: Attributes.h:70