diff --git a/bolt/include/bolt/Core/BinaryFunction.h b/bolt/include/bolt/Core/BinaryFunction.h --- a/bolt/include/bolt/Core/BinaryFunction.h +++ b/bolt/include/bolt/Core/BinaryFunction.h @@ -2037,6 +2037,8 @@ /// Returns false if disassembly failed. bool disassemble(); + void handlePCRelOperand(MCInst &Instruction, uint64_t Address, uint64_t Size); + /// Scan function for references to other functions. In relocation mode, /// add relocations for external references. /// diff --git a/bolt/lib/Core/BinaryFunction.cpp b/bolt/lib/Core/BinaryFunction.cpp --- a/bolt/lib/Core/BinaryFunction.cpp +++ b/bolt/lib/Core/BinaryFunction.cpp @@ -1006,6 +1006,46 @@ return true; } +void BinaryFunction::handlePCRelOperand(MCInst &Instruction, uint64_t Address, + uint64_t Size) { + auto &MIB = BC.MIB; + uint64_t TargetAddress = 0; + if (!MIB->evaluateMemOperandTarget(Instruction, TargetAddress, Address, + Size)) { + errs() << "BOLT-ERROR: PC-relative operand can't be evaluated:\n"; + BC.InstPrinter->printInst(&Instruction, 0, "", *BC.STI, errs()); + errs() << '\n'; + Instruction.dump_pretty(errs(), BC.InstPrinter.get()); + errs() << '\n'; + errs() << "BOLT-ERROR: cannot handle PC-relative operand at 0x" + << Twine::utohexstr(Address) << ". Skipping function " << *this + << ".\n"; + if (BC.HasRelocations) + exit(1); + IsSimple = false; + return; + } + if (TargetAddress == 0 && opts::Verbosity >= 1) { + outs() << "BOLT-INFO: PC-relative operand is zero in function " << *this + << '\n'; + } + + const MCSymbol *TargetSymbol; + uint64_t TargetOffset; + std::tie(TargetSymbol, TargetOffset) = + BC.handleAddressRef(TargetAddress, *this, /*IsPCRel*/ true); + const MCExpr *Expr = + MCSymbolRefExpr::create(TargetSymbol, MCSymbolRefExpr::VK_None, *BC.Ctx); + if (TargetOffset) { + const MCConstantExpr *Offset = + MCConstantExpr::create(TargetOffset, *BC.Ctx); + Expr = MCBinaryExpr::createAdd(Expr, Offset, *BC.Ctx); + } + MIB->replaceMemOperandDisp(Instruction, + MCOperand::createExpr(BC.MIB->getTargetExprFor( + Instruction, Expr, *BC.Ctx, 0))); +} + bool BinaryFunction::disassemble() { NamedRegionTimer T("disassemble", "Disassemble function", "buildfuncs", "Build Binary Functions", opts::TimeBuild); @@ -1024,45 +1064,6 @@ // basic block. Labels[0] = Ctx->createNamedTempSymbol("BB0"); - auto handlePCRelOperand = [&](MCInst &Instruction, uint64_t Address, - uint64_t Size) { - uint64_t TargetAddress = 0; - if (!MIB->evaluateMemOperandTarget(Instruction, TargetAddress, Address, - Size)) { - errs() << "BOLT-ERROR: PC-relative operand can't be evaluated:\n"; - BC.InstPrinter->printInst(&Instruction, 0, "", *BC.STI, errs()); - errs() << '\n'; - Instruction.dump_pretty(errs(), BC.InstPrinter.get()); - errs() << '\n'; - errs() << "BOLT-ERROR: cannot handle PC-relative operand at 0x" - << Twine::utohexstr(Address) << ". Skipping function " << *this - << ".\n"; - if (BC.HasRelocations) - exit(1); - IsSimple = false; - return; - } - if (TargetAddress == 0 && opts::Verbosity >= 1) { - outs() << "BOLT-INFO: PC-relative operand is zero in function " << *this - << '\n'; - } - - const MCSymbol *TargetSymbol; - uint64_t TargetOffset; - std::tie(TargetSymbol, TargetOffset) = - BC.handleAddressRef(TargetAddress, *this, /*IsPCRel*/ true); - const MCExpr *Expr = MCSymbolRefExpr::create( - TargetSymbol, MCSymbolRefExpr::VK_None, *BC.Ctx); - if (TargetOffset) { - const MCConstantExpr *Offset = - MCConstantExpr::create(TargetOffset, *BC.Ctx); - Expr = MCBinaryExpr::createAdd(Expr, Offset, *BC.Ctx); - } - MIB->replaceMemOperandDisp(Instruction, - MCOperand::createExpr(BC.MIB->getTargetExprFor( - Instruction, Expr, *BC.Ctx, 0))); - }; - auto handleExternalReference = [&](MCInst &Instruction, uint64_t Size, uint64_t Offset, uint64_t TargetAddress, bool &IsCall) -> MCSymbol * {