LLVM 19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
llvm::RISCVISAInfo Class Reference

#include "llvm/TargetParser/RISCVISAInfo.h"

Public Member Functions

 RISCVISAInfo (const RISCVISAInfo &)=delete
 
RISCVISAInfooperator= (const RISCVISAInfo &)=delete
 
 RISCVISAInfo (unsigned XLen, RISCVISAUtils::OrderedExtensionMap &Exts)
 
std::vector< std::string > toFeatures (bool AddAllExtensions=false, bool IgnoreUnknown=true) const
 Convert RISC-V ISA info to a feature vector.
 
const RISCVISAUtils::OrderedExtensionMapgetExtensions () const
 
unsigned getXLen () const
 
unsigned getFLen () const
 
unsigned getMinVLen () const
 
unsigned getMaxVLen () const
 
unsigned getMaxELen () const
 
unsigned getMaxELenFp () const
 
bool hasExtension (StringRef Ext) const
 
std::string toString () const
 
StringRef computeDefaultABI () const
 

Static Public Member Functions

static llvm::Expected< std::unique_ptr< RISCVISAInfo > > parseArchString (StringRef Arch, bool EnableExperimentalExtension, bool ExperimentalExtensionVersionCheck=true, bool IgnoreUnknown=false)
 Parse RISC-V ISA info from arch string.
 
static llvm::Expected< std::unique_ptr< RISCVISAInfo > > parseNormalizedArchString (StringRef Arch)
 Parse RISC-V ISA info from an arch string that is already in normalized form (as defined in the psABI).
 
static llvm::Expected< std::unique_ptr< RISCVISAInfo > > parseFeatures (unsigned XLen, const std::vector< std::string > &Features)
 Parse RISC-V ISA info from feature vector.
 
static bool isSupportedExtensionFeature (StringRef Ext)
 
static bool isSupportedExtension (StringRef Ext)
 
static bool isSupportedExtensionWithVersion (StringRef Ext)
 
static bool isSupportedExtension (StringRef Ext, unsigned MajorVersion, unsigned MinorVersion)
 
static llvm::Expected< std::unique_ptr< RISCVISAInfo > > postProcessAndChecking (std::unique_ptr< RISCVISAInfo > &&ISAInfo)
 
static std::string getTargetFeatureForExtension (StringRef Ext)
 

Detailed Description

Definition at line 24 of file RISCVISAInfo.h.

Constructor & Destructor Documentation

◆ RISCVISAInfo() [1/2]

llvm::RISCVISAInfo::RISCVISAInfo ( const RISCVISAInfo )
delete

◆ RISCVISAInfo() [2/2]

llvm::RISCVISAInfo::RISCVISAInfo ( unsigned  XLen,
RISCVISAUtils::OrderedExtensionMap Exts 
)
inline

Definition at line 29 of file RISCVISAInfo.h.

Member Function Documentation

◆ computeDefaultABI()

StringRef RISCVISAInfo::computeDefaultABI ( ) const

Definition at line 1011 of file RISCVISAInfo.cpp.

References hasExtension(), and llvm_unreachable.

◆ getExtensions()

const RISCVISAUtils::OrderedExtensionMap & llvm::RISCVISAInfo::getExtensions ( ) const
inline

Definition at line 56 of file RISCVISAInfo.h.

◆ getFLen()

unsigned llvm::RISCVISAInfo::getFLen ( ) const
inline

Definition at line 61 of file RISCVISAInfo.h.

◆ getMaxELen()

unsigned llvm::RISCVISAInfo::getMaxELen ( ) const
inline

Definition at line 64 of file RISCVISAInfo.h.

◆ getMaxELenFp()

unsigned llvm::RISCVISAInfo::getMaxELenFp ( ) const
inline

Definition at line 65 of file RISCVISAInfo.h.

◆ getMaxVLen()

unsigned llvm::RISCVISAInfo::getMaxVLen ( ) const
inline

Definition at line 63 of file RISCVISAInfo.h.

◆ getMinVLen()

unsigned llvm::RISCVISAInfo::getMinVLen ( ) const
inline

Definition at line 62 of file RISCVISAInfo.h.

◆ getTargetFeatureForExtension()

std::string RISCVISAInfo::getTargetFeatureForExtension ( StringRef  Ext)
static

◆ getXLen()

unsigned llvm::RISCVISAInfo::getXLen ( ) const
inline

Definition at line 60 of file RISCVISAInfo.h.

◆ hasExtension()

bool RISCVISAInfo::hasExtension ( StringRef  Ext) const

Definition at line 264 of file RISCVISAInfo.cpp.

References isSupportedExtension(), and stripExperimentalPrefix().

Referenced by computeDefaultABI().

◆ isSupportedExtension() [1/2]

bool RISCVISAInfo::isSupportedExtension ( StringRef  Ext)
static

◆ isSupportedExtension() [2/2]

bool RISCVISAInfo::isSupportedExtension ( StringRef  Ext,
unsigned  MajorVersion,
unsigned  MinorVersion 
)
static

Definition at line 250 of file RISCVISAInfo.cpp.

References I.

◆ isSupportedExtensionFeature()

bool RISCVISAInfo::isSupportedExtensionFeature ( StringRef  Ext)
static

◆ isSupportedExtensionWithVersion()

bool RISCVISAInfo::isSupportedExtensionWithVersion ( StringRef  Ext)
static

◆ operator=()

RISCVISAInfo & llvm::RISCVISAInfo::operator= ( const RISCVISAInfo )
delete

◆ parseArchString()

llvm::Expected< std::unique_ptr< RISCVISAInfo > > RISCVISAInfo::parseArchString ( StringRef  Arch,
bool  EnableExperimentalExtension,
bool  ExperimentalExtensionVersionCheck = true,
bool  IgnoreUnknown = false 
)
static

◆ parseFeatures()

llvm::Expected< std::unique_ptr< RISCVISAInfo > > RISCVISAInfo::parseFeatures ( unsigned  XLen,
const std::vector< std::string > &  Features 
)
static

◆ parseNormalizedArchString()

llvm::Expected< std::unique_ptr< RISCVISAInfo > > RISCVISAInfo::parseNormalizedArchString ( StringRef  Arch)
static

Parse RISC-V ISA info from an arch string that is already in normalized form (as defined in the psABI).

Unlike parseArchString, this function will not error for unrecognized extension names or extension versions.

Definition at line 461 of file RISCVISAInfo.cpp.

References llvm::any_of(), llvm::StringRef::back(), llvm::createStringError(), llvm::StringRef::drop_back(), llvm::StringRef::empty(), llvm::StringRef::getAsInteger(), llvm::invalid_argument, isDigit(), llvm::StringRef::split(), llvm::StringRef::starts_with(), and llvm::StringRef::substr().

◆ postProcessAndChecking()

llvm::Expected< std::unique_ptr< RISCVISAInfo > > RISCVISAInfo::postProcessAndChecking ( std::unique_ptr< RISCVISAInfo > &&  ISAInfo)
static

Definition at line 999 of file RISCVISAInfo.cpp.

Referenced by parseArchString(), and parseFeatures().

◆ toFeatures()

std::vector< std::string > RISCVISAInfo::toFeatures ( bool  AddAllExtensions = false,
bool  IgnoreUnknown = true 
) const

Convert RISC-V ISA info to a feature vector.

Definition at line 273 of file RISCVISAInfo.cpp.

References _, isExperimentalExtension(), and isSupportedExtension().

◆ toString()

std::string RISCVISAInfo::toString ( ) const

Definition at line 981 of file RISCVISAInfo.cpp.

References llvm::raw_string_ostream::str().


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