LLVM 22.0.0git
llvm::VPLane Class Reference

In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term "output IR" refers to code that is generated by the vectorizer. More...

#include "Transforms/Vectorize/VPlanHelpers.h"

Public Types

enum class  Kind : uint8_t { First , ScalableLast }
 Kind describes how to interpret Lane. More...

Public Member Functions

 VPLane (unsigned Lane)
 VPLane (unsigned Lane, Kind LaneKind)
unsigned getKnownLane () const
 Returns a compile-time known value for the lane index and asserts if the lane can only be calculated at runtime.
ValuegetAsRuntimeExpr (IRBuilderBase &Builder, const ElementCount &VF) const
 Returns an expression describing the lane index that can be used at runtime.
Kind getKind () const
 Returns the Kind of lane offset.
bool isFirstLane () const
 Returns true if this is the first lane of the whole vector.
unsigned mapToCacheIndex (const ElementCount &VF) const
 Maps the lane to a cache index based on VF.

Static Public Member Functions

static VPLane getFirstLane ()
static VPLane getLaneFromEnd (const ElementCount &VF, unsigned Offset)
static VPLane getLastLaneForVF (const ElementCount &VF)

Detailed Description

In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term "output IR" refers to code that is generated by the vectorizer.

VPLane provides a way to access lanes in both fixed width and scalable vectors, where for the latter the lane index sometimes needs calculating as a runtime expression.

Definition at line 125 of file VPlanHelpers.h.

Member Enumeration Documentation

◆ Kind

enum class llvm::VPLane::Kind : uint8_t
strong

Kind describes how to interpret Lane.

Enumerator
First 

For First, Lane is the index into the first N elements of a fixed-vector <N x <ElTy>> or a scalable vector <vscale x N x <ElTy>>.

ScalableLast 

For ScalableLast, Lane is the offset from the start of the last N-element subvector in a scalable vector <vscale x N x <ElTy>>.

For example, a Lane of 0 corresponds to lane (vscale - 1) * N, a Lane of 1 corresponds to ((vscale - 1) * N) + 1, etc.

Definition at line 128 of file VPlanHelpers.h.

Constructor & Destructor Documentation

◆ VPLane() [1/2]

llvm::VPLane::VPLane ( unsigned Lane)
inline

Definition at line 147 of file VPlanHelpers.h.

Referenced by getFirstLane(), getLaneFromEnd(), and getLastLaneForVF().

◆ VPLane() [2/2]

llvm::VPLane::VPLane ( unsigned Lane,
Kind LaneKind )
inline

Definition at line 148 of file VPlanHelpers.h.

Member Function Documentation

◆ getAsRuntimeExpr()

Value * VPLane::getAsRuntimeExpr ( IRBuilderBase & Builder,
const ElementCount & VF ) const

Returns an expression describing the lane index that can be used at runtime.

Definition at line 85 of file VPlan.cpp.

References First, llvm::details::FixedOrScalableQuantity< LeafTy, ValueTy >::getKnownMinValue(), llvm::getRuntimeVF(), llvm_unreachable, and ScalableLast.

◆ getFirstLane()

VPLane llvm::VPLane::getFirstLane ( )
inlinestatic

Definition at line 150 of file VPlanHelpers.h.

References First, and VPLane().

Referenced by llvm::VPIRPhi::execute(), llvm::VPTransformState::get(), and scalarizeInstruction().

◆ getKind()

Kind llvm::VPLane::getKind ( ) const
inline

Returns the Kind of lane offset.

Definition at line 183 of file VPlanHelpers.h.

Referenced by cloneForLane().

◆ getKnownLane()

unsigned llvm::VPLane::getKnownLane ( ) const
inline

Returns a compile-time known value for the lane index and asserts if the lane can only be calculated at runtime.

Definition at line 172 of file VPlanHelpers.h.

References assert(), and First.

Referenced by cloneForLane().

◆ getLaneFromEnd()

◆ getLastLaneForVF()

VPLane llvm::VPLane::getLastLaneForVF ( const ElementCount & VF)
inlinestatic

Definition at line 166 of file VPlanHelpers.h.

References getLaneFromEnd(), and VPLane().

Referenced by llvm::VPIRPhi::execute().

◆ isFirstLane()

bool llvm::VPLane::isFirstLane ( ) const
inline

Returns true if this is the first lane of the whole vector.

Definition at line 186 of file VPlanHelpers.h.

References First.

◆ mapToCacheIndex()

unsigned llvm::VPLane::mapToCacheIndex ( const ElementCount & VF) const
inline

The documentation for this class was generated from the following files: