Searched refs:DenseSet (Results 1 - 25 of 50) sorted by relevance

12

/external/llvm/unittests/ADT/
H A DDenseSetTest.cpp1 //===- llvm/unittest/ADT/DenseSetTest.cpp - DenseSet unit tests --*- C++ -*-===//
11 #include <llvm/ADT/DenseSet.h>
23 llvm::DenseSet<unsigned> set(2);
/external/llvm/lib/Target/X86/
H A DX86COFFMachineModuleInfo.h18 #include "llvm/ADT/DenseSet.h"
28 DenseSet<MCSymbol const *> Externals;
37 typedef DenseSet<MCSymbol const *>::const_iterator externals_iterator;
/external/llvm/include/llvm/ADT/
H A DDenseSet.h1 //===- llvm/ADT/DenseSet.h - Dense probed hash table ------------*- C++ -*-===//
10 // This file defines the DenseSet class.
21 /// DenseSet - This implements a dense probed hash-table based set.
26 class DenseSet { class in namespace:llvm
30 DenseSet(const DenseSet &Other) : TheMap(Other.TheMap) {} function in class:llvm::DenseSet
31 explicit DenseSet(unsigned NumInitBuckets = 0) : TheMap(NumInitBuckets) {} function in class:llvm::DenseSet
51 void swap(DenseSet& RHS) {
55 DenseSet &operator=(const DenseSet
[all...]
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp17 #include "llvm/ADT/DenseSet.h"
71 static DenseSet<void *> *OpenedHandles = 0;
91 OpenedHandles = new DenseSet<void *>();
142 for (DenseSet<void *>::iterator I = OpenedHandles->begin(),
/external/llvm/lib/Target/PTX/
H A DPTXMachineFunctionInfo.h21 #include "llvm/ADT/DenseSet.h"
35 DenseSet<unsigned> RegArgs;
36 DenseSet<unsigned> RegRets;
50 typedef DenseSet<unsigned>::const_iterator reg_iterator;
/external/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc42 static DenseSet<HMODULE> *OpenedHandles;
79 OpenedHandles = new DenseSet<HMODULE>();
95 OpenedHandles = new DenseSet<HMODULE>();
129 for (DenseSet<HMODULE>::iterator I = OpenedHandles->begin(),
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp16 #include "llvm/ADT/DenseSet.h"
74 llvm::DenseSet<const Record*> Checkers;
75 llvm::DenseSet<const Record *> SubGroups;
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers;
86 for (llvm::DenseSet<const Record *>::iterator
90 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups;
91 for (llvm::DenseSet<const Record *>::iterator
262 llvm::DenseSet<const Record *> &checkers = I->second.Checkers;
267 for (llvm::DenseSet<const Record *>::iterator
277 llvm::DenseSet<cons
[all...]
/external/clang/lib/ARCMigrate/
H A DTransARCAssign.cpp36 llvm::DenseSet<VarDecl *> ModifiedVars;
H A DTransforms.h14 #include "llvm/ADT/DenseSet.h"
82 typedef llvm::DenseSet<Expr *> ExprSet;
H A DTransBlockObjCVariable.cpp41 llvm::DenseSet<VarDecl *> CheckedVars;
/external/llvm/include/llvm/Analysis/
H A DLoopDependenceAnalysis.h23 #include "llvm/ADT/DenseSet.h"
72 void getLoops(const SCEV*, DenseSet<const Loop*>*) const;
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h19 #include "llvm/ADT/DenseSet.h"
138 DenseSet<MachineConstantPoolValue*> MachineCPVsSharingEntries;
H A DFunctionLoweringInfo.h22 #include "llvm/ADT/DenseSet.h"
115 DenseSet<const BasicBlock*> VisitedBBs;
/external/llvm/tools/llvm-objdump/
H A DMCFunction.h19 #include "llvm/ADT/DenseSet.h"
50 typedef DenseSet<uint64_t> SetTy;
H A DMCFunction.cpp43 DenseSet<uint64_t> VisitedInsts;
/external/llvm/lib/Analysis/
H A DLoopDependenceAnalysis.cpp23 #include "llvm/ADT/DenseSet.h"
140 DenseSet<const Loop*>* Loops) const {
148 DenseSet<const Loop*> loops;
163 DenseSet<const Loop*> loops;
H A DLazyValueInfo.cpp29 #include "llvm/ADT/DenseSet.h"
369 DenseSet<OverDefinedPairTy> OverDefinedCache;
451 for (DenseSet<OverDefinedPairTy>::iterator
470 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
951 DenseSet<Value*> ClearSet;
952 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
970 for (DenseSet<Value*>::iterator I = ClearSet.begin(), E = ClearSet.end();
973 DenseSet<OverDefinedPairTy>::iterator OI =
/external/clang/include/clang/AST/
H A DASTImporter.h21 #include "llvm/ADT/DenseSet.h"
40 typedef llvm::DenseSet<std::pair<Decl *, Decl *> > NonEquivalentDeclSet;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp29 #include "llvm/ADT/DenseSet.h"
221 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited,
255 DenseSet<SDNode *> visited;
/external/llvm/lib/CodeGen/
H A DTailDuplication.cpp28 #include "llvm/ADT/DenseSet.h"
86 const DenseSet<unsigned> &UsedByPhi,
93 const DenseSet<unsigned> &UsedByPhi);
104 const DenseSet<unsigned> &RegsUsedByPhi,
344 DenseSet<unsigned> *UsedByPhi) {
380 const DenseSet<unsigned> &RegsUsedByPhi,
413 const DenseSet<unsigned> &UsedByPhi) {
655 const DenseSet<unsigned> &UsedByPhi,
738 DenseSet<unsigned> UsedByPhi;
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistry.cpp17 typedef llvm::DenseSet<const CheckerRegistry::CheckerInfo *> CheckerInfoSet;
/external/llvm/lib/VMCore/
H A DModule.cpp20 #include "llvm/ADT/DenseSet.h"
426 DenseSet<const Value*> VisitedConstants;
427 DenseSet<Type*> VisitedTypes;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h20 #include "llvm/ADT/DenseSet.h"
167 typedef llvm::DenseSet<SymbolRef> InvalidatedSymbols;
H A DSymbolManager.h25 #include "llvm/ADT/DenseSet.h"
439 typedef llvm::DenseSet<SymbolRef> SymbolSetTy;
441 typedef llvm::DenseSet<const MemRegion *> RegionSetTy;
/external/llvm/lib/Transforms/Instrumentation/
H A DOptimalEdgeProfiling.cpp27 #include "llvm/ADT/DenseSet.h"
161 DenseSet<BasicBlock*> InsertedBlocks;

Completed in 1017 milliseconds

12