Skip to content

Commit 1a6a2b6

Browse files
committed
[ProfileData] Unify getInstrProf*SectionName helpers
This is a version of D32090 that unifies all of the `getInstrProf*SectionName` helper functions. (Note: the build failures which D32090 would have addressed were fixed with r300352.) We should unify these helper functions because they are hard to use in their current form. E.g we recently introduced more helpers to fix section naming for COFF files. This scheme doesn't totally succeed at hiding low-level details about section naming, so we should switch to an API that is easier to maintain. This is not an NFC commit because it fixes llvm-cov's testing support for COFF files (this falls out of the API change naturally). This is an area where we lack tests -- I will see about adding one as a follow up. Testing: check-clang, check-profile, check-llvm. Differential Revision: https://reviews.llvm.org/D32097 llvm-svn: 300381
1 parent 03df14c commit 1a6a2b6

File tree

10 files changed

+72
-169
lines changed

10 files changed

+72
-169
lines changed

llvm/include/llvm/Object/Binary.h

+11
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#ifndef LLVM_OBJECT_BINARY_H
1515
#define LLVM_OBJECT_BINARY_H
1616

17+
#include "llvm/ADT/Triple.h"
1718
#include "llvm/Object/Error.h"
1819
#include "llvm/Support/ErrorOr.h"
1920
#include "llvm/Support/FileSystem.h"
@@ -133,6 +134,16 @@ class Binary {
133134
return !(TypeID == ID_ELF32B || TypeID == ID_ELF64B ||
134135
TypeID == ID_MachO32B || TypeID == ID_MachO64B);
135136
}
137+
138+
Triple::ObjectFormatType getTripleObjectFormat() const {
139+
if (isCOFF())
140+
return Triple::COFF;
141+
if (isMachO())
142+
return Triple::MachO;
143+
if (isELF())
144+
return Triple::ELF;
145+
return Triple::UnknownObjectFormat;
146+
}
136147
};
137148

138149
/// @brief Create a Binary from Source, autodetecting the file type.

llvm/include/llvm/ProfileData/InstrProf.h

+13-33
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "llvm/ADT/STLExtras.h"
2121
#include "llvm/ADT/StringRef.h"
2222
#include "llvm/ADT/StringSet.h"
23+
#include "llvm/ADT/Triple.h"
2324
#include "llvm/IR/GlobalValue.h"
2425
#include "llvm/IR/ProfileSummary.h"
2526
#include "llvm/ProfileData/InstrProfData.inc"
@@ -53,40 +54,19 @@ class Instruction;
5354
class MDNode;
5455
class Module;
5556

56-
/// Return the name of data section containing profile counter variables.
57-
/// If M is null, the target platform is assumed to be the same as
58-
/// the host machine, and the segment prefix will not be added.
59-
std::string getInstrProfCountersSectionName(const Module *M = nullptr);
60-
61-
/// Return the name of data section containing names of instrumented
62-
/// functions. If M is null, the target platform is assumed to be the same as
63-
/// the host machine, nor will segment prefix be added.
64-
std::string getInstrProfNameSectionName(const Module *M = nullptr);
65-
66-
/// Similar to the above, but used by host tool (e.g, coverage) which has
67-
/// object format information. The section name returned is not prefixed
68-
/// with segment name.
69-
std::string getInstrProfNameSectionNameInObject(bool isCoff);
70-
71-
/// Return the name of the data section containing per-function control
72-
/// data. If M is null, the target platform is assumed to be the same as
73-
/// the host machine, and the segment prefix will not be added.
74-
std::string getInstrProfDataSectionName(const Module *M = nullptr);
75-
76-
/// Similar to the above, but used by host tool (e.g, coverage) which has
77-
/// object format information. The section name returned is not prefixed
78-
/// with segment name.
79-
std::string getInstrProfDataSectionNameInObject(bool isCoff);
80-
81-
/// Return the name of data section containing pointers to value profile
82-
/// counters/nodes. If M is null, the target platform is assumed to be
83-
/// the same as the host machine, and the segment prefix will not be added.
84-
std::string getInstrProfValuesSectionName(const Module *M = nullptr);
57+
enum InstrProfSectKind {
58+
#define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) Kind,
59+
#include "llvm/ProfileData/InstrProfData.inc"
60+
};
8561

86-
/// Return the name of data section containing nodes holdling value
87-
/// profiling data. If M is null, the target platform is assumed to be
88-
/// the same as the host machine, and the segment prefix will not be added.
89-
std::string getInstrProfVNodesSectionName(const Module *M = nullptr);
62+
/// Return the name of the profile section corresponding to \p IPSK.
63+
///
64+
/// The name of the section depends on the object format type \p OF. If
65+
/// \p AddSegmentInfo is true, a segment prefix and additional linker hints may
66+
/// be added to the section name (this is the default).
67+
std::string getInstrProfSectionName(InstrProfSectKind IPSK,
68+
Triple::ObjectFormatType OF,
69+
bool AddSegmentInfo = true);
9070

9171
/// Return the name profile runtime entry point to do value profiling
9272
/// for a given site.

llvm/include/llvm/ProfileData/InstrProfData.inc

+6-6
Original file line numberDiff line numberDiff line change
@@ -248,22 +248,22 @@ COVMAP_HEADER(uint32_t, Int32Ty, Version, \
248248

249249
#ifdef INSTR_PROF_SECT_ENTRY
250250
#define INSTR_PROF_DATA_DEFINED
251-
INSTR_PROF_SECT_ENTRY(IPSK_data, INSTR_PROF_DATA_SECT_NAME_STR, \
251+
INSTR_PROF_SECT_ENTRY(IPSK_data, \
252252
INSTR_PROF_QUOTE(INSTR_PROF_DATA_COMMON), \
253253
INSTR_PROF_QUOTE(INSTR_PROF_DATA_COFF), "__DATA,")
254-
INSTR_PROF_SECT_ENTRY(IPSK_cnts, INSTR_PROF_CNTS_SECT_NAME_STR, \
254+
INSTR_PROF_SECT_ENTRY(IPSK_cnts, \
255255
INSTR_PROF_QUOTE(INSTR_PROF_CNTS_COMMON), \
256256
INSTR_PROF_QUOTE(INSTR_PROF_CNTS_COFF), "__DATA,")
257-
INSTR_PROF_SECT_ENTRY(IPSK_name, INSTR_PROF_NAME_SECT_NAME_STR, \
257+
INSTR_PROF_SECT_ENTRY(IPSK_name, \
258258
INSTR_PROF_QUOTE(INSTR_PROF_NAME_COMMON), \
259259
INSTR_PROF_QUOTE(INSTR_PROF_NAME_COFF), "__DATA,")
260-
INSTR_PROF_SECT_ENTRY(IPSK_vals, INSTR_PROF_VALS_SECT_NAME_STR, \
260+
INSTR_PROF_SECT_ENTRY(IPSK_vals, \
261261
INSTR_PROF_QUOTE(INSTR_PROF_VALS_COMMON), \
262262
INSTR_PROF_QUOTE(INSTR_PROF_VALS_COFF), "__DATA,")
263-
INSTR_PROF_SECT_ENTRY(IPSK_vnodes, INSTR_PROF_VNODES_SECT_NAME_STR, \
263+
INSTR_PROF_SECT_ENTRY(IPSK_vnodes, \
264264
INSTR_PROF_QUOTE(INSTR_PROF_VNODES_COMMON), \
265265
INSTR_PROF_QUOTE(INSTR_PROF_VNODES_COFF), "__DATA,")
266-
INSTR_PROF_SECT_ENTRY(IPSK_covmap, INSTR_PROF_COVMAP_SECT_NAME_STR, \
266+
INSTR_PROF_SECT_ENTRY(IPSK_covmap, \
267267
INSTR_PROF_QUOTE(INSTR_PROF_COVMAP_COMMON), \
268268
INSTR_PROF_QUOTE(INSTR_PROF_COVMAP_COFF), "__LLVM_COV,")
269269

llvm/include/llvm/Transforms/InstrProfiling.h

+1-14
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class InstrProfiling : public PassInfoMixin<InstrProfiling> {
4343
private:
4444
InstrProfOptions Options;
4545
Module *M;
46+
Triple TT;
4647
const TargetLibraryInfo *TLI;
4748
struct PerFunctionProfileData {
4849
uint32_t NumValueSites[IPVK_Last + 1];
@@ -64,20 +65,6 @@ class InstrProfiling : public PassInfoMixin<InstrProfiling> {
6465
// The end value of precise value profile range for memory intrinsic sizes.
6566
int64_t MemOPSizeRangeLast;
6667

67-
bool isMachO() const;
68-
69-
/// Get the section name for the counter variables.
70-
std::string getCountersSection() const;
71-
72-
/// Get the section name for the name variables.
73-
std::string getNameSection() const;
74-
75-
/// Get the section name for the profile data variables.
76-
std::string getDataSection() const;
77-
78-
/// Get the section name for the coverage mapping data.
79-
std::string getCoverageSection() const;
80-
8168
/// Count the number of instrumented value sites for the function.
8269
void computeNumValueSiteCounts(InstrProfValueProfileInst *Ins);
8370

llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ getELFKindForNamedSection(StringRef Name, SectionKind K) {
133133
//
134134
// .section .eh_frame,"a",@progbits
135135

136-
if (Name == getInstrProfCoverageSectionNameInObject(false /*not coff*/))
136+
if (Name == getInstrProfSectionName(IPSK_covmap, Triple::ELF,
137+
/*AddSegmentInfo=*/false))
137138
return SectionKind::getMetadata();
138139

139140
if (Name.empty() || Name[0] != '.') return K;

llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -649,13 +649,15 @@ static Error loadBinaryFormat(MemoryBufferRef ObjectBuffer,
649649
: support::endianness::big;
650650

651651
// Look for the sections that we are interested in.
652-
bool IsCoff = (dyn_cast<COFFObjectFile>(OF.get()) != nullptr);
652+
auto ObjFormat = OF->getTripleObjectFormat();
653653
auto NamesSection =
654-
lookupSection(*OF, getInstrProfNameSectionNameInObject(IsCoff));
654+
lookupSection(*OF, getInstrProfSectionName(IPSK_name, ObjFormat,
655+
/*AddSegmentInfo=*/false));
655656
if (auto E = NamesSection.takeError())
656657
return E;
657658
auto CoverageSection =
658-
lookupSection(*OF, getInstrProfCoverageSectionNameInObject(IsCoff));
659+
lookupSection(*OF, getInstrProfSectionName(IPSK_covmap, ObjFormat,
660+
/*AddSegmentInfo=*/false));
659661
if (auto E = CoverageSection.takeError())
660662
return E;
661663

llvm/lib/ProfileData/InstrProf.cpp

+16-74
Original file line numberDiff line numberDiff line change
@@ -138,103 +138,45 @@ const std::error_category &llvm::instrprof_category() {
138138

139139
namespace {
140140

141-
enum InstrProfSectKind {
142-
#define INSTR_PROF_SECT_ENTRY(Kind, SectName, SectNameCommon, SectNameCoff, \
143-
Prefix) \
144-
Kind,
145-
#include "llvm/ProfileData/InstrProfData.inc"
146-
};
147-
148-
const char *InstrProfSectName[] = {
149-
#define INSTR_PROF_SECT_ENTRY(Kind, SectName, SectNameCommon, SectNameCoff, \
150-
Prefix) \
151-
SectName,
152-
#include "llvm/ProfileData/InstrProfData.inc"
153-
};
154-
155141
const char *InstrProfSectNameCommon[] = {
156-
#define INSTR_PROF_SECT_ENTRY(Kind, SectName, SectNameCommon, SectNameCoff, \
157-
Prefix) \
142+
#define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
158143
SectNameCommon,
159144
#include "llvm/ProfileData/InstrProfData.inc"
160145
};
161146

162147
const char *InstrProfSectNameCoff[] = {
163-
#define INSTR_PROF_SECT_ENTRY(Kind, SectName, SectNameCommon, SectNameCoff, \
164-
Prefix) \
148+
#define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
165149
SectNameCoff,
166150
#include "llvm/ProfileData/InstrProfData.inc"
167151
};
168152

169153
const char *InstrProfSectNamePrefix[] = {
170-
#define INSTR_PROF_SECT_ENTRY(Kind, SectName, SectNameCommon, SectNameCoff, \
171-
Prefix) \
154+
#define INSTR_PROF_SECT_ENTRY(Kind, SectNameCommon, SectNameCoff, Prefix) \
172155
Prefix,
173156
#include "llvm/ProfileData/InstrProfData.inc"
174157
};
175158

176-
std::string getInstrProfSectionName(bool isCoff, InstrProfSectKind Kind) {
177-
return isCoff ? InstrProfSectNameCoff[Kind] : InstrProfSectNameCommon[Kind];
178-
}
179-
180-
std::string getInstrProfSectionName(const Module *M, InstrProfSectKind Kind) {
181-
if (!M)
182-
return InstrProfSectName[Kind];
183-
184-
bool AddSegment = Triple(M->getTargetTriple()).isOSBinFormatMachO();
185-
std::string SectName;
186-
if (Triple(M->getTargetTriple()).isOSBinFormatCOFF())
187-
SectName = InstrProfSectNameCoff[Kind];
188-
else
189-
SectName = InstrProfSectNameCommon[Kind];
190-
191-
if (AddSegment) {
192-
SectName = InstrProfSectNamePrefix[Kind] + SectName;
193-
if (Kind == IPSK_data) {
194-
SectName += ",regular,live_support";
195-
}
196-
}
197-
return SectName;
198-
}
199-
200159
} // namespace
201160

202161
namespace llvm {
203162

204-
std::string getInstrProfCountersSectionName(const Module *M) {
205-
return getInstrProfSectionName(M, IPSK_cnts);
206-
}
207-
208-
std::string getInstrProfNameSectionName(const Module *M) {
209-
return getInstrProfSectionName(M, IPSK_name);
210-
}
211-
212-
std::string getInstrProfNameSectionNameInObject(bool isCoff) {
213-
return getInstrProfSectionName(isCoff, IPSK_name);
214-
}
215-
216-
std::string getInstrProfDataSectionName(const Module *M) {
217-
return getInstrProfSectionName(M, IPSK_data);
218-
}
219-
220-
std::string getInstrProfDataSectionNameInObject(bool isCoff) {
221-
return getInstrProfSectionName(isCoff, IPSK_data);
222-
}
163+
std::string getInstrProfSectionName(InstrProfSectKind IPSK,
164+
Triple::ObjectFormatType OF,
165+
bool AddSegmentInfo) {
166+
std::string SectName;
223167

224-
std::string getInstrProfValuesSectionName(const Module *M) {
225-
return getInstrProfSectionName(M, IPSK_vals);
226-
}
168+
if (OF == Triple::MachO && AddSegmentInfo)
169+
SectName = InstrProfSectNamePrefix[IPSK];
227170

228-
std::string getInstrProfVNodesSectionName(const Module *M) {
229-
return getInstrProfSectionName(M, IPSK_vnodes);
230-
}
171+
if (OF == Triple::COFF)
172+
SectName += InstrProfSectNameCoff[IPSK];
173+
else
174+
SectName += InstrProfSectNameCommon[IPSK];
231175

232-
std::string getInstrProfCoverageSectionName(const Module *M) {
233-
return getInstrProfSectionName(M, IPSK_covmap);
234-
}
176+
if (OF == Triple::MachO && IPSK == IPSK_data && AddSegmentInfo)
177+
SectName += ",regular,live_support";
235178

236-
std::string getInstrProfCoverageSectionNameInObject(bool isCoff) {
237-
return getInstrProfSectionName(isCoff, IPSK_covmap);
179+
return SectName;
238180
}
239181

240182
void SoftInstrProfErrors::addError(instrprof_error IE) {

llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp

+10-30
Original file line numberDiff line numberDiff line change
@@ -140,30 +140,6 @@ llvm::createInstrProfilingLegacyPass(const InstrProfOptions &Options) {
140140
return new InstrProfilingLegacyPass(Options);
141141
}
142142

143-
bool InstrProfiling::isMachO() const {
144-
return Triple(M->getTargetTriple()).isOSBinFormatMachO();
145-
}
146-
147-
/// Get the section name for the counter variables.
148-
std::string InstrProfiling::getCountersSection() const {
149-
return getInstrProfCountersSectionName(M);
150-
}
151-
152-
/// Get the section name for the name variables.
153-
std::string InstrProfiling::getNameSection() const {
154-
return getInstrProfNameSectionName(M);
155-
}
156-
157-
/// Get the section name for the profile data variables.
158-
std::string InstrProfiling::getDataSection() const {
159-
return getInstrProfDataSectionName(M);
160-
}
161-
162-
/// Get the section name for the coverage mapping data.
163-
std::string InstrProfiling::getCoverageSection() const {
164-
return getInstrProfCoverageSectionName(M);
165-
}
166-
167143
static InstrProfIncrementInst *castToIncrementInst(Instruction *Instr) {
168144
InstrProfIncrementInst *Inc = dyn_cast<InstrProfIncrementInstStep>(Instr);
169145
if (Inc)
@@ -182,6 +158,7 @@ bool InstrProfiling::run(Module &M, const TargetLibraryInfo &TLI) {
182158
UsedVars.clear();
183159
getMemOPSizeRangeFromOption(MemOPSizeRange, MemOPSizeRangeStart,
184160
MemOPSizeRangeLast);
161+
TT = Triple(M.getTargetTriple());
185162

186163
// We did not know how many value sites there would be inside
187164
// the instrumented function. This is counting the number of instrumented
@@ -442,7 +419,8 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
442419
Constant::getNullValue(CounterTy),
443420
getVarName(Inc, getInstrProfCountersVarPrefix()));
444421
CounterPtr->setVisibility(NamePtr->getVisibility());
445-
CounterPtr->setSection(getCountersSection());
422+
CounterPtr->setSection(
423+
getInstrProfSectionName(IPSK_cnts, TT.getObjectFormat()));
446424
CounterPtr->setAlignment(8);
447425
CounterPtr->setComdat(ProfileVarsComdat);
448426

@@ -462,7 +440,8 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
462440
Constant::getNullValue(ValuesTy),
463441
getVarName(Inc, getInstrProfValuesVarPrefix()));
464442
ValuesVar->setVisibility(NamePtr->getVisibility());
465-
ValuesVar->setSection(getInstrProfValuesSectionName(M));
443+
ValuesVar->setSection(
444+
getInstrProfSectionName(IPSK_vals, TT.getObjectFormat()));
466445
ValuesVar->setAlignment(8);
467446
ValuesVar->setComdat(ProfileVarsComdat);
468447
ValuesPtrExpr =
@@ -495,7 +474,7 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
495474
ConstantStruct::get(DataTy, DataVals),
496475
getVarName(Inc, getInstrProfDataVarPrefix()));
497476
Data->setVisibility(NamePtr->getVisibility());
498-
Data->setSection(getDataSection());
477+
Data->setSection(getInstrProfSectionName(IPSK_data, TT.getObjectFormat()));
499478
Data->setAlignment(INSTR_PROF_DATA_ALIGNMENT);
500479
Data->setComdat(ProfileVarsComdat);
501480

@@ -557,7 +536,8 @@ void InstrProfiling::emitVNodes() {
557536
auto *VNodesVar = new GlobalVariable(
558537
*M, VNodesTy, false, GlobalValue::PrivateLinkage,
559538
Constant::getNullValue(VNodesTy), getInstrProfVNodesVarName());
560-
VNodesVar->setSection(getInstrProfVNodesSectionName(M));
539+
VNodesVar->setSection(
540+
getInstrProfSectionName(IPSK_vnodes, TT.getObjectFormat()));
561541
UsedVars.push_back(VNodesVar);
562542
}
563543

@@ -580,7 +560,8 @@ void InstrProfiling::emitNameData() {
580560
GlobalValue::PrivateLinkage, NamesVal,
581561
getInstrProfNamesVarName());
582562
NamesSize = CompressedNameStr.size();
583-
NamesVar->setSection(getNameSection());
563+
NamesVar->setSection(
564+
getInstrProfSectionName(IPSK_name, TT.getObjectFormat()));
584565
UsedVars.push_back(NamesVar);
585566

586567
for (auto *NamePtr : ReferencedNames)
@@ -676,7 +657,6 @@ void InstrProfiling::emitInitialization() {
676657
GlobalVariable *ProfileNameVar = new GlobalVariable(
677658
*M, ProfileNameConst->getType(), true, GlobalValue::WeakAnyLinkage,
678659
ProfileNameConst, INSTR_PROF_QUOTE(INSTR_PROF_PROFILE_NAME_VAR));
679-
Triple TT(M->getTargetTriple());
680660
if (TT.supportsCOMDAT()) {
681661
ProfileNameVar->setLinkage(GlobalValue::ExternalLinkage);
682662
ProfileNameVar->setComdat(M->getOrInsertComdat(

llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ static bool shouldInstrumentReadWriteFromAddress(const Module *M, Value *Addr) {
280280
if (GV->hasSection()) {
281281
StringRef SectionName = GV->getSection();
282282
// Check if the global is in the PGO counters section.
283-
if (SectionName.endswith(getInstrProfCountersSectionName(M)))
283+
auto OF = Triple(M->getTargetTriple()).getObjectFormat();
284+
if (SectionName.endswith(
285+
getInstrProfSectionName(IPSK_cnts, OF, /*AddSegmentInfo=*/false)))
284286
return false;
285287
}
286288

0 commit comments

Comments
 (0)