blob: 6b73bd6854c9d71bc4708342098e021d14e7f877 [file] [edit]
//===- bolt/Passes/FixRISCVCallsPass.cpp ------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "bolt/Passes/FixRISCVCallsPass.h"
#include "bolt/Core/ParallelUtilities.h"
#include <iterator>
using namespace llvm;
namespace llvm {
namespace bolt {
void FixRISCVCallsPass::runOnFunction(BinaryFunction &BF) {
auto &BC = BF.getBinaryContext();
auto &MIB = BC.MIB;
auto *Ctx = BC.Ctx.get();
for (auto &BB : BF) {
for (auto II = BB.begin(); II != BB.end();) {
if (MIB->isCall(*II) && !MIB->isIndirectCall(*II)) {
auto *Target = MIB->getTargetSymbol(*II);
assert(Target && "Cannot find call target");
MCInst OldCall = *II;
auto L = BC.scopeLock();
if (MIB->isTailCall(*II))
MIB->createTailCall(*II, Target, Ctx);
else
MIB->createCall(*II, Target, Ctx);
MIB->moveAnnotations(std::move(OldCall), *II);
++II;
continue;
}
auto NextII = std::next(II);
if (NextII == BB.end())
break;
if (MIB->isRISCVCall(*II, *NextII)) {
auto *Target = MIB->getTargetSymbol(*II);
assert(Target && "Cannot find call target");
MCInst OldCall = *NextII;
auto L = BC.scopeLock();
MIB->createNoop(*II);
if (MIB->isTailCall(*NextII))
MIB->createTailCall(*NextII, Target, Ctx);
else
MIB->createCall(*NextII, Target, Ctx);
MIB->moveAnnotations(std::move(OldCall), *NextII);
II = std::next(NextII);
continue;
}
++II;
}
}
}
Error FixRISCVCallsPass::runOnFunctions(BinaryContext &BC) {
if (!BC.isRISCV() || !BC.HasRelocations)
return Error::success();
ParallelUtilities::WorkFuncTy WorkFun = [&](BinaryFunction &BF) {
runOnFunction(BF);
};
ParallelUtilities::runOnEachFunction(
BC, ParallelUtilities::SchedulingPolicy::SP_INST_LINEAR, WorkFun, nullptr,
"FixRISCVCalls");
return Error::success();
}
} // namespace bolt
} // namespace llvm