@@ -140,30 +140,6 @@ llvm::createInstrProfilingLegacyPass(const InstrProfOptions &Options) {
140
140
return new InstrProfilingLegacyPass (Options);
141
141
}
142
142
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
-
167
143
static InstrProfIncrementInst *castToIncrementInst (Instruction *Instr) {
168
144
InstrProfIncrementInst *Inc = dyn_cast<InstrProfIncrementInstStep>(Instr);
169
145
if (Inc)
@@ -182,6 +158,7 @@ bool InstrProfiling::run(Module &M, const TargetLibraryInfo &TLI) {
182
158
UsedVars.clear ();
183
159
getMemOPSizeRangeFromOption (MemOPSizeRange, MemOPSizeRangeStart,
184
160
MemOPSizeRangeLast);
161
+ TT = Triple (M.getTargetTriple ());
185
162
186
163
// We did not know how many value sites there would be inside
187
164
// the instrumented function. This is counting the number of instrumented
@@ -442,7 +419,8 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
442
419
Constant::getNullValue (CounterTy),
443
420
getVarName (Inc, getInstrProfCountersVarPrefix ()));
444
421
CounterPtr->setVisibility (NamePtr->getVisibility ());
445
- CounterPtr->setSection (getCountersSection ());
422
+ CounterPtr->setSection (
423
+ getInstrProfSectionName (IPSK_cnts, TT.getObjectFormat ()));
446
424
CounterPtr->setAlignment (8 );
447
425
CounterPtr->setComdat (ProfileVarsComdat);
448
426
@@ -462,7 +440,8 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
462
440
Constant::getNullValue (ValuesTy),
463
441
getVarName (Inc, getInstrProfValuesVarPrefix ()));
464
442
ValuesVar->setVisibility (NamePtr->getVisibility ());
465
- ValuesVar->setSection (getInstrProfValuesSectionName (M));
443
+ ValuesVar->setSection (
444
+ getInstrProfSectionName (IPSK_vals, TT.getObjectFormat ()));
466
445
ValuesVar->setAlignment (8 );
467
446
ValuesVar->setComdat (ProfileVarsComdat);
468
447
ValuesPtrExpr =
@@ -495,7 +474,7 @@ InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
495
474
ConstantStruct::get (DataTy, DataVals),
496
475
getVarName (Inc, getInstrProfDataVarPrefix ()));
497
476
Data->setVisibility (NamePtr->getVisibility ());
498
- Data->setSection (getDataSection ( ));
477
+ Data->setSection (getInstrProfSectionName (IPSK_data, TT. getObjectFormat () ));
499
478
Data->setAlignment (INSTR_PROF_DATA_ALIGNMENT);
500
479
Data->setComdat (ProfileVarsComdat);
501
480
@@ -557,7 +536,8 @@ void InstrProfiling::emitVNodes() {
557
536
auto *VNodesVar = new GlobalVariable (
558
537
*M, VNodesTy, false , GlobalValue::PrivateLinkage,
559
538
Constant::getNullValue (VNodesTy), getInstrProfVNodesVarName ());
560
- VNodesVar->setSection (getInstrProfVNodesSectionName (M));
539
+ VNodesVar->setSection (
540
+ getInstrProfSectionName (IPSK_vnodes, TT.getObjectFormat ()));
561
541
UsedVars.push_back (VNodesVar);
562
542
}
563
543
@@ -580,7 +560,8 @@ void InstrProfiling::emitNameData() {
580
560
GlobalValue::PrivateLinkage, NamesVal,
581
561
getInstrProfNamesVarName ());
582
562
NamesSize = CompressedNameStr.size ();
583
- NamesVar->setSection (getNameSection ());
563
+ NamesVar->setSection (
564
+ getInstrProfSectionName (IPSK_name, TT.getObjectFormat ()));
584
565
UsedVars.push_back (NamesVar);
585
566
586
567
for (auto *NamePtr : ReferencedNames)
@@ -676,7 +657,6 @@ void InstrProfiling::emitInitialization() {
676
657
GlobalVariable *ProfileNameVar = new GlobalVariable (
677
658
*M, ProfileNameConst->getType (), true , GlobalValue::WeakAnyLinkage,
678
659
ProfileNameConst, INSTR_PROF_QUOTE (INSTR_PROF_PROFILE_NAME_VAR));
679
- Triple TT (M->getTargetTriple ());
680
660
if (TT.supportsCOMDAT ()) {
681
661
ProfileNameVar->setLinkage (GlobalValue::ExternalLinkage);
682
662
ProfileNameVar->setComdat (M->getOrInsertComdat (
0 commit comments