LLVM 20.0.0git
|
Base class for DenseSet and DenseSmallSet. More...
#include "llvm/ADT/DenseSet.h"
Inherited by llvm::DenseSet< Function * >, llvm::DenseSet< T >, llvm::DenseSet< const Value * >, llvm::DenseSet< llvm::Instruction * >, llvm::DenseSet< llvm::BasicBlock * >, llvm::DenseSet< const llvm::MachineInstr * >, llvm::DenseSet< llvm::MachineInstr * >, llvm::DenseSet< llvm::Register >, llvm::DenseSet< ArrayRef< unsigned > >, llvm::DenseSet< MachineInstr * >, llvm::DenseSet< DebugVariableID >, llvm::DenseSet< unsigned >, llvm::DenseSet< DepTy >, llvm::DenseSet< llvm::Function * >, llvm::DenseSet< const llvm::Function * >, llvm::DenseSet< llvm::WeakVH >, llvm::DenseSet< llvm::AbstractAttribute * >, llvm::DenseSet< const char * >, llvm::DenseSet< BasicBlockCallbackVH, llvm::DenseMapInfo< llvm::Value * > >, llvm::DenseSet< Value * >, llvm::DenseSet< llvm::MCSectionCOFF * >, llvm::DenseSet< const llvm::DISubprogram * >, llvm::DenseSet< ConstantClass *, MapInfo >, llvm::DenseSet< EdgeType * >, llvm::DenseSet< uint64_t >, llvm::DenseSet< llvm::DWARFDebugNames::Abbrev, AbbrevMapInfo >, llvm::DenseSet< llvm::GlobalValue * >, llvm::DenseSet< const llvm::BasicBlock * >, llvm::DenseSet< const llvm::GCOVBlock * >, llvm::DenseSet< const BlockT * >, llvm::DenseSet< ConstValueRefT >, llvm::DenseSet< llvm::StructType * >, llvm::DenseSet< llvm::StructType *, StructTypeKeyInfo >, llvm::DenseSet< const llvm::Instruction * >, llvm::DenseSet< const SmallPtrSet< Instruction *, 4 > * >, llvm::DenseSet< IntPtrT >, llvm::DenseSet< llvm::DIArgList *, llvm::DIArgListInfo >, llvm::DenseSet< ConstantArray *, MapInfo >, llvm::DenseSet< ConstantStruct *, MapInfo >, llvm::DenseSet< ConstantVector *, MapInfo >, llvm::DenseSet< llvm::ConstantPtrAuth *, MapInfo >, llvm::DenseSet< llvm::ConstantExpr *, MapInfo >, llvm::DenseSet< llvm::InlineAsm *, MapInfo >, llvm::DenseSet< FunctionType *, FunctionTypeKeyInfo >, llvm::DenseSet< StructType *, AnonStructTypeKeyInfo >, llvm::DenseSet< TargetExtType *, TargetExtTypeKeyInfo >, llvm::DenseSet< std::pair< llvm::BasicBlock *, llvm::Value * > >, llvm::DenseSet< llvm::MCSection * >, llvm::DenseSet< llvm::StringRef >, llvm::DenseSet< const llvm::LazyCallGraph::Node * >, llvm::DenseSet< TagT >, llvm::DenseSet< llvm::MachineConstantPoolValue * >, llvm::DenseSet< PointerIntPair< const Instruction *, 1, ExplorationDirection > >, llvm::DenseSet< llvm::SUnit * >, llvm::DenseSet< PoolEntry *, PoolEntryDSInfo >, llvm::DenseSet< PhiValuesCallbackVH, llvm::DenseMapInfo< llvm::Value * > >, llvm::DenseSet< MemberTy >, llvm::DenseSet< std::pair< llvm::BasicBlock *, llvm::BasicBlock * > >, llvm::DenseSet< const llvm::LiveInterval * >, llvm::DenseSet< AssertingVH< Instruction > >, llvm::DenseSet< llvm::Value * >, llvm::DenseSet< Edge >, llvm::DenseSet< llvm::AssertingVH< llvm::Value > >, llvm::DenseSet< llvm::AssertingVH< llvm::PHINode > >, llvm::DenseSet< Register >, llvm::DenseSet< BaseTy >, llvm::DenseSet< llvm::Init * >, llvm::DenseSet< const llvm::Value * >, llvm::DenseSet< const llvm::MDNode * >, llvm::DenseSet< llvm::AttributeList >, llvm::DenseSet< llvm::Type * >, llvm::DenseSet< llvm::ElementCount >, llvm::DenseSet< COFFSymbol * >, llvm::DenseSet< DeclContext *, DeclMapInfo >, llvm::DenseSet< uint32_t >, llvm::DenseSet< Symbol * >, llvm::DenseSet< Block * >, llvm::DenseSet< llvm::CachedHashStringRef >, llvm::DenseSet< EmissionDepUnit * >, llvm::DenseSet< SymbolStringPtr >, llvm::DenseSet< void * >, llvm::DenseSet< llvm::codeview::CVRecord, llvm::pdb::SymbolDenseMapInfo >, llvm::DenseSet< const EdgeType * >, llvm::DenseSet< const TreeEntry * >, llvm::DenseSet< size_t >, llvm::DenseSet< ScheduleData * >, llvm::SmallDenseSet< llvm::Value * >, llvm::SmallDenseSet< std::pair< llvm::LazyCallGraph::Node *, llvm::LazyCallGraph::SCC * >, 4 >, llvm::SmallDenseSet< llvm::DomTreeNodeBase, 8 >, llvm::SmallDenseSet< std::pair< llvm::BasicBlock *, llvm::BasicBlock * >, 8 >, llvm::DenseSet< ValueT, ValueInfoT >, and llvm::SmallDenseSet< ValueT, InlineBuckets, ValueInfoT >.
Classes | |
class | ConstIterator |
class | Iterator |
Public Types | |
using | key_type = ValueT |
using | value_type = ValueT |
using | size_type = unsigned |
using | iterator = Iterator |
using | const_iterator = ConstIterator |
Public Member Functions | |
DenseSetImpl (unsigned InitialReserve=0) | |
template<typename InputIt > | |
DenseSetImpl (const InputIt &I, const InputIt &E) | |
DenseSetImpl (std::initializer_list< ValueT > Elems) | |
bool | empty () const |
size_type | size () const |
size_t | getMemorySize () const |
void | resize (size_t Size) |
Grow the DenseSet so that it has at least Size buckets. | |
void | reserve (size_t Size) |
Grow the DenseSet so that it can contain at least NumEntries items before resizing again. | |
void | clear () |
size_type | count (const_arg_type_t< ValueT > V) const |
Return 1 if the specified key is in the set, 0 otherwise. | |
bool | erase (const ValueT &V) |
void | swap (DenseSetImpl &RHS) |
iterator | begin () |
iterator | end () |
const_iterator | begin () const |
const_iterator | end () const |
iterator | find (const_arg_type_t< ValueT > V) |
const_iterator | find (const_arg_type_t< ValueT > V) const |
bool | contains (const_arg_type_t< ValueT > V) const |
Check if the set contains the given element. | |
template<class LookupKeyT > | |
iterator | find_as (const LookupKeyT &Val) |
Alternative version of find() which allows a different, and possibly less expensive, key type. | |
template<class LookupKeyT > | |
const_iterator | find_as (const LookupKeyT &Val) const |
void | erase (Iterator I) |
void | erase (ConstIterator CI) |
std::pair< iterator, bool > | insert (const ValueT &V) |
std::pair< iterator, bool > | insert (ValueT &&V) |
template<typename LookupKeyT > | |
std::pair< iterator, bool > | insert_as (const ValueT &V, const LookupKeyT &LookupKey) |
Alternative version of insert that uses a different (and possibly less expensive) key type. | |
template<typename LookupKeyT > | |
std::pair< iterator, bool > | insert_as (ValueT &&V, const LookupKeyT &LookupKey) |
template<typename InputIt > | |
void | insert (InputIt I, InputIt E) |
Base class for DenseSet and DenseSmallSet.
MapTy should be either
DenseMap<ValueT, detail::DenseSetEmpty, ValueInfoT, detail::DenseSetPair<ValueT>>
or the equivalent SmallDenseMap type. ValueInfoT must implement the DenseMapInfo "concept".
Definition at line 54 of file DenseSet.h.
using llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::const_iterator = ConstIterator |
Definition at line 171 of file DenseSet.h.
using llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::iterator = Iterator |
Definition at line 170 of file DenseSet.h.
using llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::key_type = ValueT |
Definition at line 63 of file DenseSet.h.
using llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::size_type = unsigned |
Definition at line 65 of file DenseSet.h.
using llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::value_type = ValueT |
Definition at line 64 of file DenseSet.h.
|
inlineexplicit |
Definition at line 67 of file DenseSet.h.
|
inline |
Definition at line 70 of file DenseSet.h.
References E, I, and llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert().
|
inline |
Definition at line 75 of file DenseSet.h.
References llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert().
|
inline |
Definition at line 173 of file DenseSet.h.
Referenced by llvm::jitlink::LinkGraph::absolute_symbols(), llvm::MMRAMetadata::begin(), checkHoistValue(), CheckLargerCands(), llvm::ComputeCrossModuleImport(), llvm::computeEHOnlyBlocks(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), llvm::MDBuilder::createFunctionEntryCount(), and llvm::jitlink::Section::symbols().
|
inline |
Definition at line 176 of file DenseSet.h.
|
inline |
Definition at line 92 of file DenseSet.h.
Referenced by checkNumberingAndReplace(), llvm::FunctionLoweringInfo::clear(), llvm::TypeFinder::clear(), llvm::SCEVExpander::clear(), llvm::SPIRV::RequirementHandler::clear(), llvm::SCEVExpander::clearPostInc(), llvm::slpvectorizer::BoUpSLP::clearReductionData(), DbgVariableRecordsRemoveRedundantDbgInstrsUsingBackwardScan(), llvm::slpvectorizer::BoUpSLP::deleteTree(), EliminateDuplicatePHINodesSetBasedImpl(), TransferTracker::loadInlocs(), reduceDbgValsBackwardScan(), removeRedundantDbgInstrsUsingBackwardScan(), llvm::objcopy::coff::Object::removeSections(), llvm::ModuleToPostOrderCGSCCPassAdaptor::run(), and llvm::OutlinableRegion::splitCandidate().
|
inline |
Check if the set contains the given element.
Definition at line 185 of file DenseSet.h.
Referenced by llvm::orc::addFunctionPointerRelocationsToCurrentSymbol(), llvm::lto::Config::addSaveTemps(), analyzeExitPHIsForOutputUses(), llvm::slpvectorizer::BoUpSLP::areAnalyzedReductionVals(), buildOverlapMapAndRecordDeclares(), checkNumberingAndReplace(), checkNumberingAndReplaceCommutative(), llvm::IRSimilarity::IRSimilarityCandidate::checkRelativeLocations(), llvm::collectEphemeralRecipesForVPlan(), collectRegionsConstants(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), llvm::SelectionDAG::copyExtraInfo(), llvm::IRSimilarity::IRSimilarityCandidate::createCanonicalRelationFrom(), DbgVariableRecordsRemoveUndefDbgAssignsFromEntryBlock(), findConstants(), findCostForOutputBlocks(), findExtractedOutputToOverallOutputMapping(), findOrCreatePHIInBlock(), getBranchInsertPoint(), getFormForIdxParent(), llvm::SPIRV::ModuleAnalysisInfo::getSkipEmission(), llvm::AMDGPU::getTransitiveUsesOfLDS(), llvm::DIExpression::hasAllLocationOps(), llvm::slpvectorizer::BoUpSLP::isAnyGathered(), llvm::InstCostVisitor::isBlockExecutable(), llvm::SPIRV::RequirementHandler::isCapabilityAvailable(), isDataTypeToken(), llvm::objcopy::NameMatcher::matches(), processLoadCommands(), propagateAttributesToRefs(), llvm::PHINode::removeIncomingValueIf(), llvm::objcopy::coff::Object::removeSections(), removeUndefDbgAssignsFromEntryBlock(), llvm::slpvectorizer::BoUpSLP::reorderBottomToTop(), replaceTargetsFromPHINode(), llvm::InstructionSelect::selectMachineFunction(), llvm::SetState< BaseTy >::setContains(), llvm::OutlinableRegion::splitCandidate(), llvm::FastISel::tryToFoldLoad(), llvm::GenericCycle< ContextT >::verifyCycle(), and willGenerateVectors().
|
inline |
Return 1 if the specified key is in the set, 0 otherwise.
Definition at line 97 of file DenseSet.h.
Referenced by llvm::LiveVariables::addNewBlock(), llvm::MCPseudoProbeDecoder::buildAddress2ProbeMap(), llvm::ModuloScheduleExpanderMVE::canApply(), canProveExitOnFirstIteration(), checkHoistValue(), TransferTracker::checkInstForNewValues(), checkVariableImport(), collectBlocksReachableByDirty(), computeFunctionSummary(), llvm::MustBeExecutedIterator::count(), llvm::ModuleSummaryIndex::exportToDot(), llvm::orc::JITDylib::getDFSLinkOrder(), getInstrBB(), getPostIncrementOperand(), handleArgs(), hasDirtyPred(), hasDuplicates(), llvm::MMRAMetadata::hasTag(), hoistValue(), llvm::GenericUniformityAnalysisImpl< ContextT >::isDivergent(), llvm::SCCPInstVisitor::isEdgeFeasible(), llvm::SCEVExpander::isInsertedInstruction(), llvm::SIInstrInfo::isOperandLegal(), llvm::SIInstrInfo::legalizeOperandsVOP3(), llvm::jitlink::LinkGraph::makeDefined(), llvm::jitlink::LinkGraph::makeExternal(), processLoadCommands(), llvm::ModuleSummaryIndex::propagateAttributes(), llvm::jitlink::prune(), DeadCodeElimination::SetQueue< T >::push_back(), llvm::BitTracker::reached(), llvm::sampleprof::SampleProfileReaderExtBinaryBase::readFuncProfiles(), relocationViaAlloca(), llvm::jitlink::LinkGraph::removeAbsoluteSymbol(), llvm::slpvectorizer::BoUpSLP::reorderBottomToTop(), llvm::ShadowResolver::resolve(), llvm::Attributor::shouldInitialize(), sortLocalVars(), llvm::thinLTOFinalizeInModule(), thinLTOResolvePrevailingGUID(), llvm::updateVCallVisibilityInIndex(), llvm::updateVCallVisibilityInModule(), and VisitGlobalVariableForEmission().
|
inline |
Definition at line 80 of file DenseSet.h.
Referenced by llvm::lto::Config::addSaveTemps(), llvm::MCPseudoProbeDecoder::buildAddress2ProbeMap(), CheckLargerCands(), checkNumberingAndReplaceCommutative(), TransferTracker::clobberMloc(), llvm::computeDeadSymbolsAndUpdateIndirectCalls(), llvm::computeEHOnlyBlocks(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), llvm::MMRAMetadata::empty(), llvm::objcopy::NameMatcher::empty(), llvm::SetState< BaseTy >::SetContents::empty(), llvm::GenericUniformityAnalysisImpl< ContextT >::hasDivergence(), llvm::ThinLTOCodeGenerator::internalize(), llvm::MMRAMetadata::operator bool(), llvm::orc::BlockFreqQuery::operator()(), llvm::PHINode::removeIncomingValueIf(), llvm::objcopy::coff::Object::removeSections(), shouldSplit(), llvm::orc::SymbolsCouldNotBeRemoved::SymbolsCouldNotBeRemoved(), llvm::orc::SymbolsNotFound::SymbolsNotFound(), llvm::thinLTOFinalizeInModule(), llvm::GenericCycle< ContextT >::verifyCycle(), and llvm::orc::rt_bootstrap::SimpleExecutorDylibManager::~SimpleExecutorDylibManager().
|
inline |
Definition at line 174 of file DenseSet.h.
Referenced by llvm::jitlink::LinkGraph::absolute_symbols(), analyzeLoopUnrollCost(), checkHoistValue(), llvm::ComputeCrossModuleImport(), llvm::MDBuilder::createFunctionEntryCount(), llvm::MMRAMetadata::end(), llvm::dwarf_linker::classic::DeclContextTree::getChildDeclContext(), handleArgs(), and llvm::jitlink::Section::symbols().
|
inline |
Definition at line 177 of file DenseSet.h.
|
inline |
Definition at line 101 of file DenseSet.h.
Referenced by analyzeExitPHIsForOutputUses(), llvm::ComputeCrossModuleImport(), llvm::computeEHOnlyBlocks(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), llvm::jitlink::LinkGraph::makeDefined(), llvm::jitlink::LinkGraph::makeExternal(), DeadCodeElimination::SetQueue< T >::pop_front(), processLoadCommands(), TransferTracker::redefVar(), reduceDbgValsBackwardScan(), llvm::jitlink::LinkGraph::removeAbsoluteSymbol(), llvm::CtxProfAnalysis::run(), and VisitGlobalVariableForEmission().
|
inline |
Definition at line 204 of file DenseSet.h.
|
inline |
Definition at line 203 of file DenseSet.h.
References I.
|
inline |
Definition at line 179 of file DenseSet.h.
Referenced by analyzeLoopUnrollCost(), CheckLargerCands(), llvm::dwarf_linker::classic::DeclContextTree::getChildDeclContext(), and handleArgs().
|
inline |
Definition at line 180 of file DenseSet.h.
|
inline |
Alternative version of find() which allows a different, and possibly less expensive, key type.
The DenseMapInfo is responsible for supplying methods getHashValue(LookupKeyT) and isEqual(LookupKeyT, KeyT) for each key type used.
Definition at line 195 of file DenseSet.h.
|
inline |
Definition at line 199 of file DenseSet.h.
|
inline |
Definition at line 82 of file DenseSet.h.
|
inline |
Definition at line 206 of file DenseSet.h.
References llvm::Empty.
Referenced by llvm::jitlink::LinkGraph::addAbsoluteSymbol(), addDefsUsesToList(), llvm::orc::addFunctionPointerRelocationsToCurrentSymbol(), llvm::objcopy::NameMatcher::addMatcher(), llvm::LiveVariables::addNewBlock(), llvm::ShadowResolver::addShadow(), TransferTracker::addUseBeforeDef(), llvm::slpvectorizer::BoUpSLP::analyzedReductionVals(), analyzeExitPHIsForOutputUses(), analyzeLoopUnrollCost(), llvm::DwarfDebug::beginModule(), llvm::buildModuleSummaryIndex(), buildOverlapMapAndRecordDeclares(), llvm::ModuloScheduleExpanderMVE::canApply(), canProveExitOnFirstIteration(), checkClobberSanity(), checkHoistValue(), CheckLargerCands(), checkNumberingAndReplace(), checkNumberingAndReplaceCommutative(), checkVariableImport(), TransferTracker::clobberMloc(), llvm::collectEphemeralRecipesForVPlan(), collectRegionsConstants(), llvm::IRSimilarity::IRSimilarityCandidate::compareCommutativeOperandMapping(), computeAliasSummary(), llvm::ComputeCrossModuleImport(), llvm::computeEHOnlyBlocks(), computeFunctionSummary(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), computeVariableSummary(), llvm::SelectionDAG::copyExtraInfo(), llvm::IRSimilarity::IRSimilarityCandidate::createCanonicalRelationFrom(), DbgVariableRecordsRemoveRedundantDbgInstrsUsingBackwardScan(), DbgVariableRecordsRemoveUndefDbgAssignsFromEntryBlock(), llvm::deleteDeadLoop(), llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::DenseSetImpl(), DiscoverDependentGlobals(), llvm::sandboxir::BasicBlock::dumpOS(), EliminateDuplicatePHINodesSetBasedImpl(), llvm::WebAssemblyAsmPrinter::emitDecls(), llvm::DwarfDebug::endFunctionImpl(), llvm::sampleprof::FunctionSamples::findAllNames(), findBaseObject(), llvm::orc::SpeculateQuery::findCalles(), findConstants(), findCostForOutputBlocks(), findExtractedOutputToOverallOutputMapping(), llvm::sampleprof::FunctionSamples::findInlinedFunctions(), findOrCreatePHIInBlock(), llvm::DWARFDebugAranges::generate(), getBaseType(), llvm::IRSimilarity::IRSimilarityCandidate::getBasicBlocks(), getBranchInsertPoint(), llvm::dwarf_linker::classic::DeclContextTree::getChildDeclContext(), getCHRConditionValuesForRegion(), llvm::PGOCtxProfContext::getContainedGuids(), llvm::orc::JITDylib::getDFSLinkOrder(), getPostIncrementOperand(), getRegsUsedByPHIs(), getSelectsInScope(), llvm::AMDGPU::getTransitiveUsesOfLDS(), llvm::slpvectorizer::BoUpSLP::getTreeCost(), llvm::DWARFUnit::getVariableForAddress(), llvm::getVisibleToRegularObjVtableGUIDs(), getWaitStatesSince(), handleArgs(), llvm::DIExpression::hasAllLocationOps(), hasDuplicates(), hasHazard(), hoistValue(), llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert(), insertRelocationStores(), insertRematerializationStores(), insertTrivialPHIs(), llvm::SIInstrInfo::isOperandLegal(), isSaveReachableThroughClean(), llvm::SIInstrInfo::legalizeOperandsVOP3(), LLVMOrcMaterializationResponsibilityDelegate(), llvm::PhiLoweringHelper::lowerPhis(), llvm::jitlink::LinkGraph::makeAbsolute(), markAllReachable(), llvm::MMRAMetadata::MMRAMetadata(), llvm::MLInlineAdvisor::onSuccessfulInlining(), llvm::orc::rt_bootstrap::SimpleExecutorDylibManager::open(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), processLoadCommands(), propagateAttributesToRefs(), llvm::jitlink::prune(), DeadCodeElimination::SetQueue< T >::push_back(), llvm::sampleprof::SampleProfileReaderExtBinaryBase::readFuncProfiles(), reduceDbgValsBackwardScan(), removeExternalCFGEdges(), llvm::PHINode::removeIncomingValueIf(), llvm::slpvectorizer::BoUpSLP::removeInstructionsAndOperands(), removeRedundantDbgInstrsUsingBackwardScan(), llvm::objcopy::coff::Object::removeSections(), removeUndefDbgAssignsFromEntryBlock(), llvm::slpvectorizer::BoUpSLP::reorderBottomToTop(), llvm::ThinLTOCodeGenerator::run(), llvm::lto::LTO::run(), llvm::UniqueStringSaver::save(), scanInlinedCode(), scanOneBB(), searchPredecessors(), llvm::InstructionSelect::selectMachineFunction(), llvm::SCEVExpander::setChainedPhi(), llvm::SPIRV::ModuleAnalysisInfo::setSkipEmission(), sortLocalVars(), stripDeadDebugInfoImpl(), llvm::thinLTOFinalizeInModule(), llvm::thinLTOResolvePrevailingInIndex(), LLVMOrcLazyCallThroughManagerRef::toSymbolDependenceMap(), llvm::orc::StaticLibraryDefinitionGenerator::tryToGenerate(), undefInvalidDbgValues(), llvm::FastISel::updateValueMap(), llvm::InstrProfWriter::validateRecord(), llvm::slpvectorizer::BoUpSLP::vectorizeTree(), llvm::GenericCycle< ContextT >::verifyCycle(), llvm::GenericCycleInfo< ContextT >::verifyCycleNest(), VisitGlobalVariableForEmission(), and willGenerateVectors().
|
inline |
Definition at line 230 of file DenseSet.h.
References E, I, and llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert().
|
inline |
Definition at line 211 of file DenseSet.h.
References llvm::Empty.
|
inline |
Alternative version of insert that uses a different (and possibly less expensive) key type.
Definition at line 219 of file DenseSet.h.
Referenced by llvm::StructType::get().
|
inline |
Definition at line 224 of file DenseSet.h.
|
inline |
Grow the DenseSet so that it can contain at least NumEntries
items before resizing again.
Definition at line 90 of file DenseSet.h.
References Size.
Referenced by EliminateDuplicatePHINodesSetBasedImpl().
|
inline |
Grow the DenseSet so that it has at least Size buckets.
Will not shrink the Size of the set.
Definition at line 86 of file DenseSet.h.
References Size.
|
inline |
Definition at line 81 of file DenseSet.h.
Referenced by checkNumberingAndReplace(), checkNumberingAndReplaceCommutative(), llvm::SampleProfileLoaderBaseImpl< FT >::computeAndPropagateWeights(), llvm::computeDeadSymbolsAndUpdateIndirectCalls(), llvm::computeLTOCacheKey(), llvm::slpvectorizer::BoUpSLP::computeMinimumValueSizes(), createSwitchStatement(), findCostForOutputBlocks(), llvm::SetState< BaseTy >::SetContents::getIntersection(), llvm::SetState< BaseTy >::getIntersection(), llvm::SetState< BaseTy >::SetContents::getUnion(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), llvm::PHINode::removeIncomingValueIf(), replaceCalledFunction(), llvm::Function::setEntryCount(), llvm::MMRAMetadata::size(), llvm::orc::SymbolLookupSet::SymbolLookupSet(), and llvm::jitlink::Section::symbols_size().
|
inline |
Definition at line 105 of file DenseSet.h.
References RHS.