1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
//===- bolt/Passes/AsmDump.cpp - Dump BinaryFunction into assembly --------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file implements the AsmDumpPass class.
//
//===----------------------------------------------------------------------===//
#include "bolt/Passes/AsmDump.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/MC/TargetRegistry.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
#include "llvm/Target/TargetMachine.h"
#include <unordered_set>
#define DEBUG_TYPE "asm-dump"
using namespace llvm;
namespace opts {
extern bool shouldPrint(const bolt::BinaryFunction &Function);
extern cl::OptionCategory BoltCategory;
extern cl::opt<unsigned> Verbosity;
cl::opt<std::string> AsmDump("asm-dump",
cl::desc("dump function into assembly"),
cl::value_desc("dump folder"), cl::ValueOptional,
cl::Hidden, cl::cat(BoltCategory));
} // end namespace opts
namespace llvm {
namespace bolt {
void dumpCFI(const BinaryFunction &BF, const MCInst &Instr, AsmPrinter &MAP) {
const MCCFIInstruction *CFIInstr = BF.getCFIFor(Instr);
switch (CFIInstr->getOperation()) {
// Skip unsupported CFI instructions.
case MCCFIInstruction::OpRememberState:
case MCCFIInstruction::OpRestoreState:
if (opts::Verbosity >= 2)
errs()
<< "BOLT-WARNING: AsmDump: skipping unsupported CFI instruction in "
<< BF << ".\n";
return;
default:
// Emit regular CFI instructions.
MAP.emitCFIInstruction(*CFIInstr);
}
}
void dumpTargetFunctionStub(raw_ostream &OS, const BinaryContext &BC,
const MCSymbol *CalleeSymb,
const BinarySection *&LastCS) {
const BinaryFunction *CalleeFunc = BC.getFunctionForSymbol(CalleeSymb);
if (!CalleeFunc || CalleeFunc->isPLTFunction())
return;
if (CalleeFunc->getOriginSection() != LastCS) {
OS << ".section " << CalleeFunc->getOriginSectionName() << '\n';
LastCS = CalleeFunc->getOriginSection();
}
StringRef CalleeName = CalleeFunc->getOneName();
OS << ".set \"" << CalleeName << "\", 0\n";
}
void dumpJumpTableSymbols(raw_ostream &OS, const JumpTable *JT, AsmPrinter &MAP,
const BinarySection *&LastBS) {
if (&JT->getSection() != LastBS) {
OS << ".section " << JT->getSectionName() << '\n';
LastBS = &JT->getSection();
}
OS << "\"" << JT->getName() << "\":\n";
for (MCSymbol *JTEntry : JT->Entries)
MAP.OutStreamer->emitSymbolValue(JTEntry, JT->OutputEntrySize);
OS << '\n';
}
void dumpBinaryDataSymbols(raw_ostream &OS, const BinaryData *BD,
const BinarySection *&LastBS) {
if (BD->isJumpTable())
return;
if (&BD->getSection() != LastBS) {
OS << ".section " << BD->getSectionName() << '\n';
LastBS = &BD->getSection();
}
OS << "\"" << BD->getName() << "\": ";
OS << '\n';
}
void dumpFunction(const BinaryFunction &BF) {
const BinaryContext &BC = BF.getBinaryContext();
if (!opts::shouldPrint(BF))
return;
// Make sure the new directory exists, creating it if necessary.
if (!opts::AsmDump.empty()) {
if (std::error_code EC = sys::fs::create_directories(opts::AsmDump)) {
errs() << "BOLT-ERROR: could not create directory '" << opts::AsmDump
<< "': " << EC.message() << '\n';
exit(1);
}
}
std::string PrintName = BF.getPrintName();
std::replace(PrintName.begin(), PrintName.end(), '/', '-');
std::string Filename =
opts::AsmDump.empty()
? (PrintName + ".s")
: (opts::AsmDump + sys::path::get_separator() + PrintName + ".s")
.str();
outs() << "BOLT-INFO: Dumping function assembly to " << Filename << "\n";
std::error_code EC;
raw_fd_ostream OS(Filename, EC, sys::fs::OF_None);
if (EC) {
errs() << "BOLT-ERROR: " << EC.message() << ", unable to open " << Filename
<< " for output.\n";
exit(1);
}
OS.SetUnbuffered();
// Create local MC context to isolate the effect of ephemeral assembly
// emission.
BinaryContext::IndependentCodeEmitter MCEInstance =
BC.createIndependentMCCodeEmitter();
MCContext *LocalCtx = MCEInstance.LocalCtx.get();
std::unique_ptr<MCAsmBackend> MAB(
BC.TheTarget->createMCAsmBackend(*BC.STI, *BC.MRI, MCTargetOptions()));
int AsmPrinterVariant = BC.AsmInfo->getAssemblerDialect();
MCInstPrinter *InstructionPrinter(BC.TheTarget->createMCInstPrinter(
*BC.TheTriple, AsmPrinterVariant, *BC.AsmInfo, *BC.MII, *BC.MRI));
auto FOut = std::make_unique<formatted_raw_ostream>(OS);
FOut->SetUnbuffered();
std::unique_ptr<MCStreamer> AsmStreamer(
createAsmStreamer(*LocalCtx, std::move(FOut),
/*isVerboseAsm=*/true,
/*useDwarfDirectory=*/false, InstructionPrinter,
std::move(MCEInstance.MCE), std::move(MAB),
/*ShowInst=*/false));
AsmStreamer->initSections(true, *BC.STI);
std::unique_ptr<TargetMachine> TM(BC.TheTarget->createTargetMachine(
BC.TripleName, "", "", TargetOptions(), std::nullopt));
std::unique_ptr<AsmPrinter> MAP(
BC.TheTarget->createAsmPrinter(*TM, std::move(AsmStreamer)));
StringRef FunctionName = BF.getOneName();
OS << " .globl " << FunctionName << '\n';
OS << " .type " << FunctionName << ", %function\n";
OS << FunctionName << ":\n";
// FDATA for the entry point
if (uint64_t EntryExecCount = BF.getKnownExecutionCount())
OS << "# FDATA: 0 [unknown] 0 "
<< "1 " << FunctionName << " 0 "
<< "0 " << EntryExecCount << '\n';
// Binary data references from the function.
std::unordered_set<const BinaryData *> BDReferences;
// Function references from the function (to avoid constructing call graph).
std::unordered_set<const MCSymbol *> CallReferences;
MAP->OutStreamer->emitCFIStartProc(/*IsSimple=*/false);
for (const BinaryBasicBlock *BB : BF.getLayout().blocks()) {
OS << BB->getName() << ": \n";
const std::string BranchLabel = Twine(BB->getName(), "_br").str();
const MCInst *LastInst = BB->getLastNonPseudoInstr();
for (const MCInst &Instr : *BB) {
// Dump pseudo instructions (CFI)
if (BC.MIB->isPseudo(Instr)) {
if (BC.MIB->isCFI(Instr))
dumpCFI(BF, Instr, *MAP.get());
continue;
}
// Analyze symbol references (data, functions) from the instruction.
bool IsCall = BC.MIB->isCall(Instr);
for (const MCOperand &Operand : MCPlus::primeOperands(Instr)) {
if (Operand.isExpr() &&
Operand.getExpr()->getKind() == MCExpr::SymbolRef) {
std::pair<const MCSymbol *, uint64_t> TSI =
BC.MIB->getTargetSymbolInfo(Operand.getExpr());
const MCSymbol *Symbol = TSI.first;
if (IsCall)
CallReferences.insert(Symbol);
else if (const BinaryData *BD =
BC.getBinaryDataByName(Symbol->getName()))
BDReferences.insert(BD);
}
}
if (&Instr == LastInst && (BB->succ_size() || IsCall))
OS << BranchLabel << ":\n";
BC.InstPrinter->printInst(&Instr, 0, "", *BC.STI, OS);
OS << '\n';
}
// Dump profile data in FDATA format (as parsed by link_fdata).
for (const BinaryBasicBlock *Succ : BB->successors()) {
const BinaryBasicBlock::BinaryBranchInfo BI = BB->getBranchInfo(*Succ);
if (!BI.MispredictedCount && !BI.Count)
continue;
OS << "# FDATA: 1 " << FunctionName << " #" << BranchLabel << "# "
<< "1 " << FunctionName << " #" << Succ->getName() << "# "
<< BI.MispredictedCount << " " << BI.Count << '\n';
}
OS << '\n';
}
MAP->OutStreamer->emitCFIEndProc();
OS << ".size " << FunctionName << ", .-" << FunctionName << '\n';
const BinarySection *LastSection = BF.getOriginSection();
// Print stubs for all target functions.
for (const MCSymbol *CalleeSymb : CallReferences)
dumpTargetFunctionStub(OS, BC, CalleeSymb, LastSection);
OS << "# Jump tables\n";
// Print all jump tables.
for (auto &JTI : BF.jumpTables())
dumpJumpTableSymbols(OS, JTI.second, *MAP.get(), LastSection);
OS << "# BinaryData\n";
// Print data references.
for (const BinaryData *BD : BDReferences)
dumpBinaryDataSymbols(OS, BD, LastSection);
}
void AsmDumpPass::runOnFunctions(BinaryContext &BC) {
for (const auto &BFIt : BC.getBinaryFunctions())
dumpFunction(BFIt.second);
}
} // namespace bolt
} // namespace llvm
|