LLVM 23.0.0git
ForceFunctionAttrs.cpp
Go to the documentation of this file.
1//===- ForceFunctionAttrs.cpp - Force function attrs for debugging --------===//
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
10#include "llvm/IR/Function.h"
11#include "llvm/IR/Module.h"
13#include "llvm/Support/Debug.h"
17using namespace llvm;
18
19#define DEBUG_TYPE "forceattrs"
20
22 "force-attribute", cl::Hidden,
24 "Add an attribute to a function. This can be a "
25 "pair of 'function-name:attribute-name', to apply an attribute to a "
26 "specific function. For "
27 "example -force-attribute=foo:noinline. Specifying only an attribute "
28 "will apply the attribute to every function in the module. This "
29 "option can be specified multiple times."));
30
32 "force-remove-attribute", cl::Hidden,
33 cl::desc("Remove an attribute from a function. This can be a "
34 "pair of 'function-name:attribute-name' to remove an attribute "
35 "from a specific function. For "
36 "example -force-remove-attribute=foo:noinline. Specifying only an "
37 "attribute will remove the attribute from all functions in the "
38 "module. This "
39 "option can be specified multiple times."));
40
42 "forceattrs-csv-path", cl::Hidden,
44 "Path to CSV file containing lines of function names and attributes to "
45 "add to them in the form of `f1,attr1` or `f2,attr2=str`."));
46
48 if (Kind == Attribute::AlwaysInline)
49 return F.hasFnAttribute(Attribute::NoInline);
50 if (Kind == Attribute::NoInline)
51 return F.hasFnAttribute(Attribute::AlwaysInline);
52 return false;
53}
54
55/// If F has any forced attributes given on the command line, add them.
56/// If F has any forced remove attributes given on the command line, remove
57/// them. When both force and force-remove are given to a function, the latter
58/// takes precedence.
59static void forceAttributes(Function &F) {
60 auto ParseFunctionAndAttr = [&](StringRef S) {
61 StringRef AttributeText;
62 if (S.contains(':')) {
63 auto KV = StringRef(S).split(':');
64 if (KV.first != F.getName())
65 return Attribute::None;
66 AttributeText = KV.second;
67 } else {
68 AttributeText = S;
69 }
70 auto Kind = Attribute::getAttrKindFromName(AttributeText);
71 if (Kind == Attribute::None || !Attribute::canUseAsFnAttr(Kind)) {
72 LLVM_DEBUG(dbgs() << "ForcedAttribute: " << AttributeText
73 << " unknown or not a function attribute!\n");
74 }
75 return Kind;
76 };
77
78 for (const auto &S : ForceAttributes) {
79 auto Kind = ParseFunctionAndAttr(S);
80 if (Kind == Attribute::None || F.hasFnAttribute(Kind) ||
82 continue;
83 F.addFnAttr(Kind);
84 }
85
86 for (const auto &S : ForceRemoveAttributes) {
87 auto Kind = ParseFunctionAndAttr(S);
88 if (Kind == Attribute::None || !F.hasFnAttribute(Kind))
89 continue;
90 F.removeFnAttr(Kind);
91 }
92}
93
94static bool hasForceAttributes() {
95 return !ForceAttributes.empty() || !ForceRemoveAttributes.empty();
96}
97
100 bool Changed = false;
101 if (!CSVFilePath.empty()) {
102 auto BufferOrError = MemoryBuffer::getFileOrSTDIN(CSVFilePath);
103 if (!BufferOrError) {
104 std::error_code EC = BufferOrError.getError();
105 M.getContext().emitError("cannot open CSV file: " + EC.message());
106 return PreservedAnalyses::all();
107 }
108
109 StringRef Buffer = BufferOrError.get()->getBuffer();
112 for (; !It.is_at_end(); ++It) {
113 auto SplitPair = It->split(',');
114 if (SplitPair.second.empty())
115 continue;
116 Function *Func = M.getFunction(SplitPair.first);
117 if (Func) {
118 if (Func->isDeclaration())
119 continue;
120 auto SecondSplitPair = SplitPair.second.split('=');
121 if (!SecondSplitPair.second.empty()) {
122 Func->addFnAttr(SecondSplitPair.first, SecondSplitPair.second);
123 Changed = true;
124 } else {
125 auto AttrKind = Attribute::getAttrKindFromName(SplitPair.second);
126 if (AttrKind != Attribute::None &&
127 Attribute::canUseAsFnAttr(AttrKind) &&
128 !hasConflictingFnAttr(AttrKind, *Func)) {
129 // TODO: There could be string attributes without a value, we should
130 // support those, too.
131 Func->addFnAttr(AttrKind);
132 Changed = true;
133 } else
134 errs() << "Cannot add " << SplitPair.second
135 << " as an attribute name.\n";
136 }
137 } else {
138 errs() << "Function in CSV file at line " << It.line_number()
139 << " does not exist.\n";
140 // TODO: `report_fatal_error at end of pass for missing functions.
141 continue;
142 }
143 }
144 }
145 if (hasForceAttributes()) {
146 for (Function &F : M.functions())
148 Changed = true;
149 }
150 // Just conservatively invalidate analyses if we've made any changes, this
151 // isn't likely to be important.
153}
static void forceAttributes(Function &F)
If F has any forced attributes given on the command line, add them.
static bool hasConflictingFnAttr(Attribute::AttrKind Kind, Function &F)
static bool hasForceAttributes()
static cl::list< std::string > ForceAttributes("force-attribute", cl::Hidden, cl::desc("Add an attribute to a function. This can be a " "pair of 'function-name:attribute-name', to apply an attribute to a " "specific function. For " "example -force-attribute=foo:noinline. Specifying only an attribute " "will apply the attribute to every function in the module. This " "option can be specified multiple times."))
static cl::list< std::string > ForceRemoveAttributes("force-remove-attribute", cl::Hidden, cl::desc("Remove an attribute from a function. This can be a " "pair of 'function-name:attribute-name' to remove an attribute " "from a specific function. For " "example -force-remove-attribute=foo:noinline. Specifying only an " "attribute will remove the attribute from all functions in the " "module. This " "option can be specified multiple times."))
static cl::opt< std::string > CSVFilePath("forceattrs-csv-path", cl::Hidden, cl::desc("Path to CSV file containing lines of function names and attributes to " "add to them in the form of `f1,attr1` or `f2,attr2=str`."))
Super simple passes to force specific function attrs from the commandline into the IR for debugging p...
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition MD5.cpp:54
#define LLVM_DEBUG(...)
Definition Debug.h:114
static LLVM_ABI Attribute::AttrKind getAttrKindFromName(StringRef AttrName)
static LLVM_ABI bool canUseAsFnAttr(AttrKind Kind)
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition Attributes.h:124
@ None
No attributes have been set.
Definition Attributes.h:126
This interface provides simple read-only access to a block of memory, and provides simple methods for...
static std::unique_ptr< MemoryBuffer > getMemBuffer(StringRef InputData, StringRef BufferName="", bool RequiresNullTerminator=true)
Open the specified memory range as a MemoryBuffer.
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-".
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition Analysis.h:115
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition StringRef.h:730
A forward iterator which reads text lines from a buffer.
int64_t line_number() const
Return the current line number. May return any number at EOF.
bool is_at_end() const
Return true if we're an "end" iterator or have reached EOF.
Changed
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
PreservedAnalyses run(Module &M, ModuleAnalysisManager &)