LLVM 19.0.0git
Functions
MCSubtargetInfo.cpp File Reference
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/MC/MCInstrItineraries.h"
#include "llvm/MC/MCSchedule.h"
#include "llvm/Support/Format.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/TargetParser/SubtargetFeature.h"
#include <algorithm>
#include <cassert>
#include <cstring>
#include <optional>

Go to the source code of this file.

Functions

template<typename T >
static const TFind (StringRef S, ArrayRef< T > A)
 Find KV in array using binary search.
 
static void SetImpliedBits (FeatureBitset &Bits, const FeatureBitset &Implies, ArrayRef< SubtargetFeatureKV > FeatureTable)
 For each feature that is (transitively) implied by this feature, set it.
 
static void ClearImpliedBits (FeatureBitset &Bits, unsigned Value, ArrayRef< SubtargetFeatureKV > FeatureTable)
 For each feature that (transitively) implies this feature, clear it.
 
static void ApplyFeatureFlag (FeatureBitset &Bits, StringRef Feature, ArrayRef< SubtargetFeatureKV > FeatureTable)
 
template<typename T >
static size_t getLongestEntryLength (ArrayRef< T > Table)
 Return the length of the longest entry in the table.
 
static void Help (ArrayRef< SubtargetSubTypeKV > CPUTable, ArrayRef< SubtargetFeatureKV > FeatTable)
 Display help for feature and mcpu choices.
 
static void cpuHelp (ArrayRef< SubtargetSubTypeKV > CPUTable)
 Display help for mcpu choices only.
 
static FeatureBitset getFeatures (StringRef CPU, StringRef TuneCPU, StringRef FS, ArrayRef< SubtargetSubTypeKV > ProcDesc, ArrayRef< SubtargetFeatureKV > ProcFeatures)
 

Function Documentation

◆ ApplyFeatureFlag()

static void ApplyFeatureFlag ( FeatureBitset Bits,
StringRef  Feature,
ArrayRef< SubtargetFeatureKV FeatureTable 
)
static

◆ ClearImpliedBits()

static void ClearImpliedBits ( FeatureBitset Bits,
unsigned  Value,
ArrayRef< SubtargetFeatureKV FeatureTable 
)
static

For each feature that (transitively) implies this feature, clear it.

Definition at line 49 of file MCSubtargetInfo.cpp.

References ClearImpliedBits().

Referenced by ApplyFeatureFlag(), llvm::MCSubtargetInfo::ClearFeatureBitsTransitively(), ClearImpliedBits(), and llvm::MCSubtargetInfo::ToggleFeature().

◆ cpuHelp()

static void cpuHelp ( ArrayRef< SubtargetSubTypeKV CPUTable)
static

Display help for mcpu choices only.

Definition at line 130 of file MCSubtargetInfo.cpp.

References llvm::errs().

Referenced by getFeatures().

◆ Find()

template<typename T >
static const T * Find ( StringRef  S,
ArrayRef< T A 
)
static

◆ getFeatures()

static FeatureBitset getFeatures ( StringRef  CPU,
StringRef  TuneCPU,
StringRef  FS,
ArrayRef< SubtargetSubTypeKV ProcDesc,
ArrayRef< SubtargetFeatureKV ProcFeatures 
)
static

◆ getLongestEntryLength()

template<typename T >
static size_t getLongestEntryLength ( ArrayRef< T Table)
static

Return the length of the longest entry in the table.

Definition at line 89 of file MCSubtargetInfo.cpp.

References I.

Referenced by Help().

◆ Help()

static void Help ( ArrayRef< SubtargetSubTypeKV CPUTable,
ArrayRef< SubtargetFeatureKV FeatTable 
)
static

Display help for feature and mcpu choices.

Definition at line 97 of file MCSubtargetInfo.cpp.

References llvm::errs(), llvm::format(), and getLongestEntryLength().

Referenced by llvm::cl::extrahelp::extrahelp(), and getFeatures().

◆ SetImpliedBits()

static void SetImpliedBits ( FeatureBitset Bits,
const FeatureBitset Implies,
ArrayRef< SubtargetFeatureKV FeatureTable 
)
static

For each feature that is (transitively) implied by this feature, set it.

Definition at line 37 of file MCSubtargetInfo.cpp.

References SetImpliedBits(), and llvm::FeatureBitset::test().

Referenced by ApplyFeatureFlag(), getFeatures(), llvm::MCSubtargetInfo::SetFeatureBitsTransitively(), SetImpliedBits(), and llvm::MCSubtargetInfo::ToggleFeature().