All pages
Powered by GitBook
1 of 8

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Destination

Struct in BasicBlock

Inherits from System.ValueType

Summary

A destination represents a BasicBlock or node that may be run, following the execution of a BasicBlock .

public struct Destination

Remarks

Destination objects represent links between blocks, or between blocks and nodes.

Enums

Name
Description
Name
Description

The type of a Destination.

The block that this destination refers to.

The condition that causes this destination to be reached.

Properties

The name of the node that this destination refers to.

Gets the Destination's type - whether the destination is a block, or a node.

DestinationType
Block
Condition
NodeName
Type

Block

Property in

The block that this destination refers to.

This value is only valid when is .

public BasicBlock Block { get; set; }

Summary

Remarks

Destination
Type
Block

Condition

Property in

The condition that causes this destination to be reached.

NodeName

Property in

The name of the node that this destination refers to.

This value is only valid when is .

public Condition Condition { get; set; }

Summary

Destination
public string NodeName { get; set; }

Summary

Remarks

Destination
Type
Node

Type

Property in

Gets the Destination's type - whether the destination is a block, or a node.

Node

Enumeration Member in

Block

Enumeration Member in

public DestinationType Type { get; set; }

Summary

Destination
Node

Summary

DestinationType
Block

Summary

DestinationType

DestinationType

Enum in Destination

Inherits from System.Enum

Summary

The type of a Destination.

public enum DestinationType
{
    Node,
    Block
}

Members

Name
Description

Block
Node