Lines Matching refs:FencesInserted
301 int FencesInserted; in runOnMachineFunction() local
314 FencesInserted = hardenLoadsWithPlugin(MF, std::move(Graph)); in runOnMachineFunction()
316 FencesInserted = hardenLoadsWithHeuristic(MF, std::move(Graph)); in runOnMachineFunction()
319 if (FencesInserted > 0) in runOnMachineFunction()
321 NumFences += FencesInserted; in runOnMachineFunction()
322 return (FencesInserted > 0); in runOnMachineFunction()
614 int FencesInserted = 0; in hardenLoadsWithPlugin() local
647 FencesInserted += insertFences(MF, *Graph, CutEdges); in hardenLoadsWithPlugin()
649 LLVM_DEBUG(dbgs() << "Inserted " << FencesInserted << " fences\n"); in hardenLoadsWithPlugin()
654 return FencesInserted; in hardenLoadsWithPlugin()
716 int FencesInserted = insertFences(MF, *Graph, CutEdges); in hardenLoadsWithHeuristic() local
718 LLVM_DEBUG(dbgs() << "Inserted " << FencesInserted << " fences\n"); in hardenLoadsWithHeuristic()
720 return FencesInserted; in hardenLoadsWithHeuristic()
726 int FencesInserted = 0; in insertFences() local
759 ++FencesInserted; in insertFences()
764 return FencesInserted; in insertFences()