2022-04-19 10:56:42 +02:00
|
|
|
//=============================================================================
|
|
|
|
// FILE:
|
|
|
|
// CacheAnalysisPass.cpp
|
|
|
|
//
|
|
|
|
// DESCRIPTION:
|
|
|
|
// Visits all functions in a module, prints their names and the number of
|
|
|
|
// arguments via stderr. Strictly speaking, this is an analysis pass (i.e.
|
|
|
|
// the functions are not modified). However, in order to keep things simple
|
|
|
|
// there's no 'print' method here (every analysis pass should implement it).
|
|
|
|
//
|
|
|
|
// USAGE:
|
|
|
|
// New PM:
|
|
|
|
// opt -load-pass-plugin=libCacheAnalysisPass.dylib -passes=lru-misses `\`
|
|
|
|
// -disable-output <input-llvm-file>
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// License: MIT
|
|
|
|
//=============================================================================
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Analysis/ScalarEvolution.h"
|
|
|
|
#include "llvm/IR/BasicBlock.h"
|
|
|
|
#include "llvm/IR/CFG.h"
|
|
|
|
#include "llvm/IR/Instruction.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/PassManager.h"
|
|
|
|
#include "llvm/IR/Value.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Passes/PassBuilder.h"
|
|
|
|
#include "llvm/Passes/PassPlugin.h"
|
2022-04-22 10:35:30 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2022-04-19 10:56:42 +02:00
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "../include/AbstractCache.h"
|
|
|
|
#include "../include/CacheType.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// CacheAnalysisPass implementation
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// No need to expose the internals of the pass to the outside world - keep
|
|
|
|
// everything in an anonymous namespace.
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// New PM implementation
|
|
|
|
|
|
|
|
struct CacheAnalysisPass : PassInfoMixin<CacheAnalysisPass> {
|
|
|
|
|
|
|
|
// Development Options
|
|
|
|
bool PrintAddresses = false;
|
|
|
|
bool PrintEdges = false;
|
|
|
|
bool PrintEdgesPost = false;
|
2022-05-03 14:10:24 +02:00
|
|
|
bool DumpToDot = false;
|
2022-04-19 10:56:42 +02:00
|
|
|
bool DumpNodes = false;
|
2022-05-24 23:30:04 +02:00
|
|
|
bool LoopUnrolling = true;
|
2022-04-19 10:56:42 +02:00
|
|
|
|
|
|
|
// Assume a 4kB Cache
|
2022-05-24 21:53:15 +02:00
|
|
|
// with 16 Sets, associativity of 4 and Cachelines fitting two times the instruction size
|
2022-04-19 10:56:42 +02:00
|
|
|
CacheType Cache = CacheType(16, 4, 128);
|
|
|
|
StringRef EntryPoint = "main";
|
|
|
|
unsigned int EntryAddress;
|
|
|
|
unsigned int AddressCounter = 0b100000;
|
|
|
|
// assume 8 Bit addressed 64 Bit instructions.
|
|
|
|
std::map<unsigned int, Value *> Addr2Value;
|
|
|
|
std::map<Value *, unsigned int> Value2Addr;
|
|
|
|
|
|
|
|
AbstractCache AC;
|
|
|
|
std::map<Function *, bool> VisitedFunctions;
|
|
|
|
|
|
|
|
unsigned int stringRefToInt(StringRef SR) {
|
|
|
|
unsigned int Length = SR.size();
|
2022-04-22 10:35:30 +02:00
|
|
|
unsigned int Ret = 0;
|
2022-04-19 10:56:42 +02:00
|
|
|
unsigned int Count = 1;
|
|
|
|
for (char C : SR) {
|
|
|
|
unsigned int Factor = (unsigned int)pow(10, (Length - Count++));
|
|
|
|
switch (C) {
|
|
|
|
case '0':
|
|
|
|
break;
|
|
|
|
case '1':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '2':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 2 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '3':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 3 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '4':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 4 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '5':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 5 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '6':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 6 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '7':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 7 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '8':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 8 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
case '9':
|
2022-04-22 10:35:30 +02:00
|
|
|
Ret += 9 * Factor;
|
2022-04-19 10:56:42 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errs() << "StringRef is not a decimal number";
|
|
|
|
};
|
|
|
|
}
|
2022-04-22 10:35:30 +02:00
|
|
|
return Ret;
|
2022-04-19 10:56:42 +02:00
|
|
|
}
|
|
|
|
|
2022-04-21 13:25:37 +02:00
|
|
|
void addressCollector(Module &M) {
|
2022-04-19 10:56:42 +02:00
|
|
|
for (Function &F : M) {
|
|
|
|
if (F.getName().equals(EntryPoint)) {
|
|
|
|
EntryAddress = AddressCounter;
|
|
|
|
if (PrintAddresses)
|
|
|
|
outs() << "Found main at PseudoAddress: " << EntryAddress << " \n";
|
|
|
|
}
|
|
|
|
unsigned int InstCounter = 0;
|
|
|
|
for (BasicBlock &BB : F) {
|
|
|
|
for (Instruction &Inst : BB) {
|
|
|
|
AC.addEmptyNode(AddressCounter);
|
|
|
|
Addr2Value[AddressCounter] = &Inst;
|
|
|
|
Value2Addr[&Inst] = AddressCounter;
|
|
|
|
AddressCounter += 1;
|
|
|
|
InstCounter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-21 13:25:37 +02:00
|
|
|
void addressPrinter(Function &F) {
|
2022-04-19 10:56:42 +02:00
|
|
|
outs() << "F: " << Value2Addr[&F] << ".\n";
|
|
|
|
for (BasicBlock &BB : F) {
|
|
|
|
outs() << "-BB: " << Value2Addr[&BB] << "\n";
|
|
|
|
for (Instruction &Inst : BB) {
|
|
|
|
outs() << "--InstAddress:" << Value2Addr[&Inst] << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-21 13:25:37 +02:00
|
|
|
void initEdges(Function &F) {
|
2022-04-19 10:56:42 +02:00
|
|
|
for (BasicBlock &BB : F) {
|
|
|
|
// Collect Controll flow in F
|
2022-04-21 13:25:37 +02:00
|
|
|
for (auto *Pred : predecessors(&BB)) {
|
2022-04-19 10:56:42 +02:00
|
|
|
AC.addEdge(Value2Addr[&Pred->getInstList().back()],
|
|
|
|
Value2Addr[&BB.getInstList().front()]);
|
|
|
|
if (PrintEdges)
|
|
|
|
outs() << Value2Addr[&Pred->getInstList().back()] << " -> "
|
|
|
|
<< Value2Addr[&BB.getInstList().front()] << "\n";
|
|
|
|
}
|
|
|
|
Instruction *PrevInst = nullptr;
|
|
|
|
for (Instruction &Inst : BB) {
|
|
|
|
// Collect function Calls in F=main
|
|
|
|
if (CallInst *Caller = dyn_cast<CallInst>(&Inst)) {
|
|
|
|
Function *Callee = Caller->getCalledFunction();
|
|
|
|
if (PrintEdges)
|
|
|
|
outs() << "F: " << Callee->getName() << "\n"
|
|
|
|
<< "Inst: " << Caller->getName() << "\n";
|
|
|
|
if (Callee != NULL) {
|
|
|
|
// Add edge on Function Call
|
|
|
|
AC.addEdge(Value2Addr[&Inst],
|
|
|
|
Value2Addr[&Callee->getBasicBlockList()
|
|
|
|
.front()
|
|
|
|
.getInstList()
|
|
|
|
.front()]);
|
|
|
|
// Add edge on Function return
|
|
|
|
AC.addEdge(
|
|
|
|
Value2Addr
|
|
|
|
[&Callee->getBasicBlockList().back().getInstList().back()],
|
|
|
|
Value2Addr[&Inst]);
|
|
|
|
|
|
|
|
if (PrintEdges) {
|
|
|
|
// Printing edge on Function Call
|
|
|
|
outs() << Callee->getName() << ": ";
|
|
|
|
outs() << Value2Addr[&Inst] << " -> "
|
|
|
|
<< Value2Addr[&Callee->getBasicBlockList()
|
|
|
|
.front()
|
|
|
|
.getInstList()
|
|
|
|
.front()]
|
|
|
|
<< "\n";
|
|
|
|
// Printing edge on Function return
|
|
|
|
outs() << Callee->getName() << ": ";
|
|
|
|
outs() << Value2Addr[&Callee->getBasicBlockList()
|
|
|
|
.back()
|
|
|
|
.getInstList()
|
|
|
|
.back()]
|
|
|
|
<< " -> " << Value2Addr[&Inst] << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resume CFG construction in called function
|
|
|
|
if (VisitedFunctions.find(Callee) == VisitedFunctions.end()) {
|
|
|
|
VisitedFunctions[Callee] = true;
|
2022-04-21 13:25:37 +02:00
|
|
|
initEdges(*Callee);
|
2022-04-19 10:56:42 +02:00
|
|
|
}
|
|
|
|
PrevInst = nullptr;
|
|
|
|
if (PrintEdges)
|
|
|
|
outs() << "Back from " << Callee->getName() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (PrevInst != nullptr) {
|
|
|
|
AC.addEdge(Value2Addr[PrevInst], Value2Addr[&Inst]);
|
|
|
|
if (PrintEdges)
|
|
|
|
outs() << Value2Addr[PrevInst] << " -> " << Value2Addr[&Inst]
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
PrevInst = &Inst;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM) {
|
2022-05-16 11:55:40 +02:00
|
|
|
// FunctionAnalysisManager &FAM =
|
|
|
|
// MAM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
|
2022-04-19 10:56:42 +02:00
|
|
|
|
2022-04-21 13:25:37 +02:00
|
|
|
addressCollector(M);
|
2022-05-16 11:55:40 +02:00
|
|
|
// Function *EntryFunction;
|
2022-04-19 10:56:42 +02:00
|
|
|
for (Function &F : M.getFunctionList()) {
|
|
|
|
// Start iterating through CFG from entry point
|
|
|
|
if (F.getName().equals(EntryPoint)) {
|
2022-05-16 11:55:40 +02:00
|
|
|
// EntryFunction = &F;
|
2022-04-21 13:25:37 +02:00
|
|
|
initEdges(F);
|
2022-04-19 10:56:42 +02:00
|
|
|
}
|
|
|
|
if (PrintAddresses)
|
2022-04-21 13:25:37 +02:00
|
|
|
addressPrinter(F);
|
2022-04-19 10:56:42 +02:00
|
|
|
}
|
2022-05-03 11:13:37 +02:00
|
|
|
if(LoopUnrolling)
|
|
|
|
AC.unrollLoops();
|
2022-05-06 10:04:45 +02:00
|
|
|
AC.runMustAnalysis(EntryAddress);
|
2022-05-03 11:13:37 +02:00
|
|
|
if (DumpNodes)
|
|
|
|
AC.dumpNodes();
|
2022-04-19 10:56:42 +02:00
|
|
|
if (PrintEdgesPost)
|
|
|
|
AC.dumpEdges();
|
|
|
|
if (DumpToDot)
|
|
|
|
AC.dumpDotFile();
|
|
|
|
outs() << "MustHits: " << AC.collectHits() << "\n";
|
2022-05-03 14:04:21 +02:00
|
|
|
//outs() << "MayMisses: " << AC.collectMisses() << "\n";
|
2022-04-19 10:56:42 +02:00
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// New PM Registration
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
llvm::PassPluginLibraryInfo getCacheAnalysisPassPluginInfo() {
|
|
|
|
return {LLVM_PLUGIN_API_VERSION, "CacheAnalysisPass", LLVM_VERSION_STRING,
|
|
|
|
[](PassBuilder &PB) {
|
|
|
|
PB.registerPipelineParsingCallback(
|
|
|
|
[](StringRef Name, ModulePassManager &MPM,
|
|
|
|
ArrayRef<PassBuilder::PipelineElement>) {
|
|
|
|
if (Name == "lru-misses") {
|
|
|
|
MPM.addPass(CacheAnalysisPass());
|
|
|
|
return true; // only looks at CFG
|
|
|
|
}
|
|
|
|
return false; // Analysis pass.
|
|
|
|
});
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the core interface for pass plugins. It guarantees that 'opt' will
|
|
|
|
// be able to recognize CacheAnalysisPass when added to the pass pipeline on
|
|
|
|
// the command line, i.e. via '-passes=lru-misses'
|
|
|
|
extern "C" LLVM_ATTRIBUTE_WEAK ::llvm::PassPluginLibraryInfo
|
|
|
|
llvmGetPassPluginInfo() {
|
|
|
|
return getCacheAnalysisPassPluginInfo();
|
|
|
|
}
|