Return true if this range is a single local segment between the bounds.

Synopsis

Declared in <llvm/CodeGen/LiveInterval.h>

bool
isLocal(
    SlotIndex Start,
    SlotIndex End) const;

Description

True iff this segment is a single segment that lies between the specified boundaries, exclusively. Vregs live across a backedge are not considered local. The boundaries are expected to lie within an extended basic block, so vregs that are not live out should contain no holes.

Return Value

True if this range is a single local segment between the bounds.

Parameters

Name

Description

Start

Exclusive lower bound of the local region.

End

Exclusive upper bound of the local region.

Created with MrDocs