2018-11-30 09:01:52 +08:00
|
|
|
//===- X86DiscriminateMemOps.cpp - Unique IDs for Mem Ops -----------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-11-30 09:01:52 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// This pass aids profile-driven cache prefetch insertion by ensuring all
|
|
|
|
/// instructions that have a memory operand are distinguishible from each other.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "X86.h"
|
|
|
|
#include "X86InstrBuilder.h"
|
|
|
|
#include "X86InstrInfo.h"
|
|
|
|
#include "X86MachineFunctionInfo.h"
|
|
|
|
#include "X86Subtarget.h"
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
|
|
#include "llvm/IR/DebugInfoMetadata.h"
|
|
|
|
#include "llvm/ProfileData/SampleProf.h"
|
|
|
|
#include "llvm/ProfileData/SampleProfReader.h"
|
2018-12-22 06:48:50 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2018-11-30 09:01:52 +08:00
|
|
|
#include "llvm/Transforms/IPO/SampleProfile.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2018-12-14 03:40:59 +08:00
|
|
|
#define DEBUG_TYPE "x86-discriminate-memops"
|
|
|
|
|
[llvm] Opt-in flag for X86DiscriminateMemOps
Summary:
Currently, if an instruction with a memory operand has no debug information,
X86DiscriminateMemOps will generate one based on the first line of the
enclosing function, or the last seen debug info.
This may cause confusion in certain debugging scenarios. The long term
approach would be to use the line number '0' in such cases, however, that
brings in challenges: the base discriminator value range is limited
(4096 values).
For the short term, adding an opt-in flag for this feature.
See bug 40319 (https://bugs.llvm.org/show_bug.cgi?id=40319)
Reviewers: dblaikie, jmorse, gbedwell
Reviewed By: dblaikie
Subscribers: aprantl, eraman, hiraditya
Differential Revision: https://reviews.llvm.org/D57257
llvm-svn: 352246
2019-01-26 05:49:54 +08:00
|
|
|
static cl::opt<bool> EnableDiscriminateMemops(
|
|
|
|
DEBUG_TYPE, cl::init(false),
|
|
|
|
cl::desc("Generate unique debug info for each instruction with a memory "
|
2020-05-21 22:51:32 +08:00
|
|
|
"operand. Should be enabled for profile-driven cache prefetching, "
|
[llvm] Opt-in flag for X86DiscriminateMemOps
Summary:
Currently, if an instruction with a memory operand has no debug information,
X86DiscriminateMemOps will generate one based on the first line of the
enclosing function, or the last seen debug info.
This may cause confusion in certain debugging scenarios. The long term
approach would be to use the line number '0' in such cases, however, that
brings in challenges: the base discriminator value range is limited
(4096 values).
For the short term, adding an opt-in flag for this feature.
See bug 40319 (https://bugs.llvm.org/show_bug.cgi?id=40319)
Reviewers: dblaikie, jmorse, gbedwell
Reviewed By: dblaikie
Subscribers: aprantl, eraman, hiraditya
Differential Revision: https://reviews.llvm.org/D57257
llvm-svn: 352246
2019-01-26 05:49:54 +08:00
|
|
|
"both in the build of the binary being profiled, as well as in "
|
|
|
|
"the build of the binary consuming the profile."),
|
|
|
|
cl::Hidden);
|
|
|
|
|
2019-05-11 05:27:55 +08:00
|
|
|
static cl::opt<bool> BypassPrefetchInstructions(
|
|
|
|
"x86-bypass-prefetch-instructions", cl::init(true),
|
|
|
|
cl::desc("When discriminating instructions with memory operands, ignore "
|
|
|
|
"prefetch instructions. This ensures the other memory operand "
|
|
|
|
"instructions have the same identifiers after inserting "
|
|
|
|
"prefetches, allowing for successive insertions."),
|
|
|
|
cl::Hidden);
|
|
|
|
|
2018-11-30 09:01:52 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
using Location = std::pair<StringRef, unsigned>;
|
|
|
|
|
|
|
|
Location diToLocation(const DILocation *Loc) {
|
|
|
|
return std::make_pair(Loc->getFilename(), Loc->getLine());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensure each instruction having a memory operand has a distinct <LineNumber,
|
|
|
|
/// Discriminator> pair.
|
|
|
|
void updateDebugInfo(MachineInstr *MI, const DILocation *Loc) {
|
|
|
|
DebugLoc DL(Loc);
|
|
|
|
MI->setDebugLoc(DL);
|
|
|
|
}
|
|
|
|
|
|
|
|
class X86DiscriminateMemOps : public MachineFunctionPass {
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
|
|
StringRef getPassName() const override {
|
|
|
|
return "X86 Discriminate Memory Operands";
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
|
|
|
|
/// Default construct and initialize the pass.
|
|
|
|
X86DiscriminateMemOps();
|
|
|
|
};
|
|
|
|
|
2019-05-11 05:27:55 +08:00
|
|
|
bool IsPrefetchOpcode(unsigned Opcode) {
|
|
|
|
return Opcode == X86::PREFETCHNTA || Opcode == X86::PREFETCHT0 ||
|
|
|
|
Opcode == X86::PREFETCHT1 || Opcode == X86::PREFETCHT2;
|
|
|
|
}
|
2018-11-30 09:01:52 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
char X86DiscriminateMemOps::ID = 0;
|
|
|
|
|
|
|
|
/// Default construct and initialize the pass.
|
|
|
|
X86DiscriminateMemOps::X86DiscriminateMemOps() : MachineFunctionPass(ID) {}
|
|
|
|
|
|
|
|
bool X86DiscriminateMemOps::runOnMachineFunction(MachineFunction &MF) {
|
[llvm] Opt-in flag for X86DiscriminateMemOps
Summary:
Currently, if an instruction with a memory operand has no debug information,
X86DiscriminateMemOps will generate one based on the first line of the
enclosing function, or the last seen debug info.
This may cause confusion in certain debugging scenarios. The long term
approach would be to use the line number '0' in such cases, however, that
brings in challenges: the base discriminator value range is limited
(4096 values).
For the short term, adding an opt-in flag for this feature.
See bug 40319 (https://bugs.llvm.org/show_bug.cgi?id=40319)
Reviewers: dblaikie, jmorse, gbedwell
Reviewed By: dblaikie
Subscribers: aprantl, eraman, hiraditya
Differential Revision: https://reviews.llvm.org/D57257
llvm-svn: 352246
2019-01-26 05:49:54 +08:00
|
|
|
if (!EnableDiscriminateMemops)
|
|
|
|
return false;
|
|
|
|
|
2018-11-30 09:01:52 +08:00
|
|
|
DISubprogram *FDI = MF.getFunction().getSubprogram();
|
|
|
|
if (!FDI || !FDI->getUnit()->getDebugInfoForProfiling())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Have a default DILocation, if we find instructions with memops that don't
|
|
|
|
// have any debug info.
|
|
|
|
const DILocation *ReferenceDI =
|
|
|
|
DILocation::get(FDI->getContext(), FDI->getLine(), 0, FDI);
|
2019-02-20 01:16:23 +08:00
|
|
|
assert(ReferenceDI && "ReferenceDI should not be nullptr");
|
2018-11-30 09:01:52 +08:00
|
|
|
DenseMap<Location, unsigned> MemOpDiscriminators;
|
|
|
|
MemOpDiscriminators[diToLocation(ReferenceDI)] = 0;
|
|
|
|
|
|
|
|
// Figure out the largest discriminator issued for each Location. When we
|
|
|
|
// issue new discriminators, we can thus avoid issuing discriminators
|
|
|
|
// belonging to instructions that don't have memops. This isn't a requirement
|
|
|
|
// for the goals of this pass, however, it avoids unnecessary ambiguity.
|
|
|
|
for (auto &MBB : MF) {
|
|
|
|
for (auto &MI : MBB) {
|
|
|
|
const auto &DI = MI.getDebugLoc();
|
|
|
|
if (!DI)
|
|
|
|
continue;
|
2019-05-11 05:27:55 +08:00
|
|
|
if (BypassPrefetchInstructions && IsPrefetchOpcode(MI.getDesc().Opcode))
|
|
|
|
continue;
|
2018-11-30 09:01:52 +08:00
|
|
|
Location Loc = diToLocation(DI);
|
|
|
|
MemOpDiscriminators[Loc] =
|
|
|
|
std::max(MemOpDiscriminators[Loc], DI->getBaseDiscriminator());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep track of the discriminators seen at each Location. If an instruction's
|
|
|
|
// DebugInfo has a Location and discriminator we've already seen, replace its
|
|
|
|
// discriminator with a new one, to guarantee uniqueness.
|
|
|
|
DenseMap<Location, DenseSet<unsigned>> Seen;
|
|
|
|
|
|
|
|
bool Changed = false;
|
|
|
|
for (auto &MBB : MF) {
|
|
|
|
for (auto &MI : MBB) {
|
|
|
|
if (X86II::getMemoryOperandNo(MI.getDesc().TSFlags) < 0)
|
|
|
|
continue;
|
2019-05-11 05:27:55 +08:00
|
|
|
if (BypassPrefetchInstructions && IsPrefetchOpcode(MI.getDesc().Opcode))
|
|
|
|
continue;
|
2018-11-30 09:01:52 +08:00
|
|
|
const DILocation *DI = MI.getDebugLoc();
|
2019-05-10 08:12:51 +08:00
|
|
|
bool HasDebug = DI;
|
|
|
|
if (!HasDebug) {
|
2018-11-30 09:01:52 +08:00
|
|
|
DI = ReferenceDI;
|
|
|
|
}
|
2018-12-22 06:48:50 +08:00
|
|
|
Location L = diToLocation(DI);
|
|
|
|
DenseSet<unsigned> &Set = Seen[L];
|
2018-11-30 09:01:52 +08:00
|
|
|
const std::pair<DenseSet<unsigned>::iterator, bool> TryInsert =
|
|
|
|
Set.insert(DI->getBaseDiscriminator());
|
2019-05-10 08:12:51 +08:00
|
|
|
if (!TryInsert.second || !HasDebug) {
|
2018-12-22 06:48:50 +08:00
|
|
|
unsigned BF, DF, CI = 0;
|
|
|
|
DILocation::decodeDiscriminator(DI->getDiscriminator(), BF, DF, CI);
|
|
|
|
Optional<unsigned> EncodedDiscriminator = DILocation::encodeDiscriminator(
|
|
|
|
MemOpDiscriminators[L] + 1, DF, CI);
|
|
|
|
|
|
|
|
if (!EncodedDiscriminator) {
|
|
|
|
// FIXME(mtrofin): The assumption is that this scenario is infrequent/OK
|
|
|
|
// not to support. If evidence points otherwise, we can explore synthesizeing
|
|
|
|
// unique DIs by adding fake line numbers, or by constructing 64 bit
|
|
|
|
// discriminators.
|
|
|
|
LLVM_DEBUG(dbgs() << "Unable to create a unique discriminator "
|
|
|
|
"for instruction with memory operand in: "
|
2018-12-14 03:40:59 +08:00
|
|
|
<< DI->getFilename() << " Line: " << DI->getLine()
|
|
|
|
<< " Column: " << DI->getColumn()
|
2018-12-22 06:48:50 +08:00
|
|
|
<< ". This is likely due to a large macro expansion. \n");
|
|
|
|
continue;
|
2018-12-14 03:40:59 +08:00
|
|
|
}
|
2018-12-22 06:48:50 +08:00
|
|
|
// Since we were able to encode, bump the MemOpDiscriminators.
|
|
|
|
++MemOpDiscriminators[L];
|
|
|
|
DI = DI->cloneWithDiscriminator(EncodedDiscriminator.getValue());
|
2019-02-20 01:16:23 +08:00
|
|
|
assert(DI && "DI should not be nullptr");
|
2018-12-22 06:48:50 +08:00
|
|
|
updateDebugInfo(&MI, DI);
|
|
|
|
Changed = true;
|
|
|
|
std::pair<DenseSet<unsigned>::iterator, bool> MustInsert =
|
|
|
|
Set.insert(DI->getBaseDiscriminator());
|
2018-12-22 07:02:10 +08:00
|
|
|
(void)MustInsert; // Silence warning in release build.
|
2018-12-22 06:48:50 +08:00
|
|
|
assert(MustInsert.second && "New discriminator shouldn't be present in set");
|
2018-11-30 09:01:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bump the reference DI to avoid cramming discriminators on line 0.
|
|
|
|
// FIXME(mtrofin): pin ReferenceDI on blocks or first instruction with DI
|
|
|
|
// in a block. It's more consistent than just relying on the last memop
|
|
|
|
// instruction we happened to see.
|
|
|
|
ReferenceDI = DI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *llvm::createX86DiscriminateMemOpsPass() {
|
|
|
|
return new X86DiscriminateMemOps();
|
|
|
|
}
|