2020-11-13 17:46:55 +08:00
|
|
|
//===-- AnnotationRemarks.cpp - Generate remarks for annotated instrs. ----===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Generate remarks for instructions marked with !annotation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/Scalar/AnnotationRemarks.h"
|
|
|
|
#include "llvm/ADT/MapVector.h"
|
|
|
|
#include "llvm/Analysis/OptimizationRemarkEmitter.h"
|
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/InstIterator.h"
|
2021-02-25 05:19:39 +08:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2021-02-26 01:49:53 +08:00
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
2020-11-13 17:46:55 +08:00
|
|
|
#include "llvm/InitializePasses.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2021-05-21 03:17:58 +08:00
|
|
|
#include "llvm/Transforms/Utils/AutoInitRemark.h"
|
2020-11-13 17:46:55 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::ore;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "annotation-remarks"
|
|
|
|
#define REMARK_PASS DEBUG_TYPE
|
|
|
|
|
2021-02-25 03:17:19 +08:00
|
|
|
static void tryEmitAutoInitRemark(ArrayRef<Instruction *> Instructions,
|
2021-02-26 01:49:53 +08:00
|
|
|
OptimizationRemarkEmitter &ORE,
|
|
|
|
const TargetLibraryInfo &TLI) {
|
2021-02-25 03:17:19 +08:00
|
|
|
// For every auto-init annotation generate a separate remark.
|
|
|
|
for (Instruction *I : Instructions) {
|
2021-05-21 03:17:58 +08:00
|
|
|
if (!I->hasMetadata(LLVMContext::MD_annotation))
|
2021-02-25 03:17:19 +08:00
|
|
|
continue;
|
2021-05-21 03:17:58 +08:00
|
|
|
for (const MDOperand &Op :
|
|
|
|
I->getMetadata(LLVMContext::MD_annotation)->operands()) {
|
|
|
|
if (cast<MDString>(Op.get())->getString() != "auto-init")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
Function &F = *I->getParent()->getParent();
|
|
|
|
const DataLayout &DL = F.getParent()->getDataLayout();
|
|
|
|
AutoInitRemark Remark(ORE, REMARK_PASS, DL, TLI);
|
|
|
|
// For some of them, we can provide more information:
|
|
|
|
|
|
|
|
// For stores:
|
|
|
|
// * size
|
|
|
|
// * volatile / atomic
|
|
|
|
if (auto *SI = dyn_cast<StoreInst>(I)) {
|
|
|
|
Remark.inspectStore(*SI);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For intrinsics:
|
|
|
|
// * user-friendly name
|
|
|
|
// * size
|
|
|
|
if (auto *II = dyn_cast<IntrinsicInst>(I)) {
|
|
|
|
Remark.inspectIntrinsicCall(*II);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For calls:
|
|
|
|
// * known/unknown function (e.g. the compiler knows bzero, but it doesn't
|
|
|
|
// know my_bzero)
|
|
|
|
// * memory operation size
|
|
|
|
if (auto *CI = dyn_cast<CallInst>(I)) {
|
|
|
|
Remark.inspectCall(*CI);
|
|
|
|
continue;
|
|
|
|
}
|
2021-02-26 01:49:53 +08:00
|
|
|
|
2021-05-21 03:17:58 +08:00
|
|
|
Remark.inspectUnknown(*I);
|
|
|
|
}
|
2021-02-25 03:17:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 01:49:53 +08:00
|
|
|
static void runImpl(Function &F, const TargetLibraryInfo &TLI) {
|
2020-11-13 17:46:55 +08:00
|
|
|
if (!OptimizationRemarkEmitter::allowExtraAnalysis(F, REMARK_PASS))
|
|
|
|
return;
|
|
|
|
|
2021-02-25 03:17:19 +08:00
|
|
|
// Track all annotated instructions aggregated based on their debug location.
|
|
|
|
DenseMap<MDNode *, SmallVector<Instruction *, 4>> DebugLoc2Annotated;
|
|
|
|
|
2020-11-13 17:46:55 +08:00
|
|
|
OptimizationRemarkEmitter ORE(&F);
|
2021-02-25 03:17:19 +08:00
|
|
|
// First, generate a summary of the annotated instructions.
|
2020-11-13 17:46:55 +08:00
|
|
|
MapVector<StringRef, unsigned> Mapping;
|
|
|
|
for (Instruction &I : instructions(F)) {
|
|
|
|
if (!I.hasMetadata(LLVMContext::MD_annotation))
|
|
|
|
continue;
|
2021-02-25 03:17:19 +08:00
|
|
|
auto Iter = DebugLoc2Annotated.insert({I.getDebugLoc().getAsMDNode(), {}});
|
|
|
|
Iter.first->second.push_back(&I);
|
|
|
|
|
2020-11-13 17:46:55 +08:00
|
|
|
for (const MDOperand &Op :
|
|
|
|
I.getMetadata(LLVMContext::MD_annotation)->operands()) {
|
|
|
|
auto Iter = Mapping.insert({cast<MDString>(Op.get())->getString(), 0});
|
|
|
|
Iter.first->second++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto &KV : Mapping)
|
2021-03-23 19:59:08 +08:00
|
|
|
ORE.emit(OptimizationRemarkAnalysis(REMARK_PASS, "AnnotationSummary",
|
|
|
|
F.getSubprogram(), &F.front())
|
2020-11-13 17:46:55 +08:00
|
|
|
<< "Annotated " << NV("count", KV.second) << " instructions with "
|
|
|
|
<< NV("type", KV.first));
|
2021-02-25 03:17:19 +08:00
|
|
|
|
|
|
|
// For each debug location, look for all the instructions with annotations and
|
|
|
|
// generate more detailed remarks to be displayed at that location.
|
|
|
|
for (auto &KV : DebugLoc2Annotated) {
|
|
|
|
// Don't generate remarks with no debug location.
|
|
|
|
if (!KV.first)
|
|
|
|
continue;
|
|
|
|
|
2021-02-26 01:49:53 +08:00
|
|
|
tryEmitAutoInitRemark(KV.second, ORE, TLI);
|
2021-02-25 03:17:19 +08:00
|
|
|
}
|
2020-11-13 17:46:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct AnnotationRemarksLegacy : public FunctionPass {
|
|
|
|
static char ID;
|
|
|
|
|
|
|
|
AnnotationRemarksLegacy() : FunctionPass(ID) {
|
|
|
|
initializeAnnotationRemarksLegacyPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnFunction(Function &F) override {
|
2021-02-26 01:49:53 +08:00
|
|
|
const TargetLibraryInfo &TLI =
|
|
|
|
getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
|
|
|
|
runImpl(F, TLI);
|
2020-11-13 17:46:55 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.setPreservesAll();
|
2021-02-26 01:49:53 +08:00
|
|
|
AU.addRequired<TargetLibraryInfoWrapperPass>();
|
2020-11-13 17:46:55 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char AnnotationRemarksLegacy::ID = 0;
|
|
|
|
|
|
|
|
INITIALIZE_PASS_BEGIN(AnnotationRemarksLegacy, "annotation-remarks",
|
|
|
|
"Annotation Remarks", false, false)
|
2021-02-26 01:49:53 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
|
2020-11-13 17:46:55 +08:00
|
|
|
INITIALIZE_PASS_END(AnnotationRemarksLegacy, "annotation-remarks",
|
|
|
|
"Annotation Remarks", false, false)
|
|
|
|
|
|
|
|
FunctionPass *llvm::createAnnotationRemarksLegacyPass() {
|
|
|
|
return new AnnotationRemarksLegacy();
|
|
|
|
}
|
|
|
|
|
|
|
|
PreservedAnalyses AnnotationRemarksPass::run(Function &F,
|
|
|
|
FunctionAnalysisManager &AM) {
|
2021-02-26 01:49:53 +08:00
|
|
|
auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
|
|
|
|
runImpl(F, TLI);
|
2020-11-13 17:46:55 +08:00
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|