ΒΆtemplate <typename... VisitorTs>
void visitExistingEdges(
    llvm::jitlink::LinkGraph& G,
    VisitorTs&&... Vs)

Description

For each edge in the given graph, apply a list of visitors to the edge, stopping when the first visitor's visitEdge method returns true. Only visits edges that were in the graph at call time: if any visitor adds new edges those will not be visited. Visitors are not allowed to remove edges (though they can change their kind, target, and addend).

Declared at: llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h:1773

Templates

VisitorTs

Parameters

llvm::jitlink::LinkGraph& G
VisitorTs&&... Vs