Lines Matching refs:FencesInserted
302 int FencesInserted; in runOnMachineFunction() local
315 FencesInserted = hardenLoadsWithPlugin(MF, std::move(Graph)); in runOnMachineFunction()
317 FencesInserted = hardenLoadsWithHeuristic(MF, std::move(Graph)); in runOnMachineFunction()
320 if (FencesInserted > 0) in runOnMachineFunction()
322 NumFences += FencesInserted; in runOnMachineFunction()
323 return (FencesInserted > 0); in runOnMachineFunction()
616 int FencesInserted = 0; in hardenLoadsWithPlugin() local
649 FencesInserted += insertFences(MF, *Graph, CutEdges); in hardenLoadsWithPlugin()
651 LLVM_DEBUG(dbgs() << "Inserted " << FencesInserted << " fences\n"); in hardenLoadsWithPlugin()
656 return FencesInserted; in hardenLoadsWithPlugin()
718 int FencesInserted = insertFences(MF, *Graph, CutEdges); in hardenLoadsWithHeuristic() local
720 LLVM_DEBUG(dbgs() << "Inserted " << FencesInserted << " fences\n"); in hardenLoadsWithHeuristic()
722 return FencesInserted; in hardenLoadsWithHeuristic()
728 int FencesInserted = 0; in insertFences() local
761 ++FencesInserted; in insertFences()
766 return FencesInserted; in insertFences()