Table of Contents

Enum ControlFlowEdgeType

Namespace
Echo.ControlFlow
Assembly
Echo.ControlFlow.dll

Provides all possible edge types that are supported in a control flow graph.

public enum ControlFlowEdgeType

Fields

Abnormal = 4

Indicates the edge is only traversed in abnormal circumstances, typically when an exception occurs.

Conditional = 3

Indicates the edge is only traversed when a specific condition is met.

FallThrough = 1

Indicates the edge is the default fallthrough edge of a node, and is traversed when no other edge is traversed.

None = 0

Indicates the edge is not actually a real edge, but a new node was found at the target.

Unconditional = 2

Indicates the edge is traversed as a result from an unconditional jump instruction.