Home
last modified time | relevance | path

Searched refs:SmallPtrSet (Results 1 – 25 of 1101) sorted by relevance

12345678910>>...45

/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallPtrSet.h411 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
425 SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
426 SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
427 SmallPtrSet(SmallPtrSet &&that)
431 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
435 SmallPtrSet(std::initializer_list<PtrType> IL)
440 SmallPtrSet<PtrType, SmallSize> &
441 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
447 SmallPtrSet<PtrType, SmallSize> &
448 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
[all …]
/external/llvm/include/llvm/ADT/
DSmallPtrSet.h353 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
367 SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
368 SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
369 SmallPtrSet(SmallPtrSet &&that)
373 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
377 SmallPtrSet<PtrType, SmallSize> &
378 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
384 SmallPtrSet<PtrType, SmallSize>&
385 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
392 void swap(SmallPtrSet<PtrType, SmallSize> &RHS) {
[all …]
/external/llvm-project/llvm/unittests/ADT/
DSmallPtrSetTest.cpp25 SmallPtrSet<int *, 4> s1 = {&buf[0], &buf[1]}; in TEST()
26 SmallPtrSet<int *, 4> s2; in TEST()
30 (s2 = static_cast<SmallPtrSet<int *, 4> &>(s2)).insert(&buf[3]); in TEST()
56 SmallPtrSet<int *, 4> s; in TEST()
57 typedef SmallPtrSet<int *, 4>::iterator iter; in TEST()
109 SmallPtrSet<int *, 4> s1; in TEST()
121 SmallPtrSet<int *, 4> s2(s1); in TEST()
138 SmallPtrSet<int *, 4> s3(std::move(s1)); in TEST()
170 SmallPtrSet<int *, 2> a; in TEST()
171 SmallPtrSet<int *, 2> b; in TEST()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallPtrSet.h443 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
457 SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
458 SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
459 SmallPtrSet(SmallPtrSet &&that)
463 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
467 SmallPtrSet(std::initializer_list<PtrType> IL)
472 SmallPtrSet<PtrType, SmallSize> &
473 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
479 SmallPtrSet<PtrType, SmallSize> &
480 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
[all …]
/external/llvm-project/llvm/include/llvm/ADT/
DSmallPtrSet.h442 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
456 SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
457 SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
458 SmallPtrSet(SmallPtrSet &&that)
462 SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
466 SmallPtrSet(std::initializer_list<PtrType> IL)
471 SmallPtrSet<PtrType, SmallSize> &
472 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
478 SmallPtrSet<PtrType, SmallSize> &
479 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
[all …]
/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DDeclRefExprUtils.cpp21 using llvm::SmallPtrSet;
35 SmallPtrSet<const Node *, 16> &Nodes) { in extractNodesByIdTo()
44 SmallPtrSet<const DeclRefExpr *, 16>
58 SmallPtrSet<const DeclRefExpr *, 16> DeclRefs; in constReferenceDeclRefExprs()
89 SmallPtrSet<const DeclRefExpr *, 16>
94 SmallPtrSet<const DeclRefExpr *, 16> DeclRefs; in allDeclRefExprs()
99 SmallPtrSet<const DeclRefExpr *, 16>
105 SmallPtrSet<const DeclRefExpr *, 16> DeclRefs; in allDeclRefExprs()
DDeclRefExprUtils.h31 llvm::SmallPtrSet<const DeclRefExpr *, 16>
35 llvm::SmallPtrSet<const DeclRefExpr *, 16>
40 llvm::SmallPtrSet<const DeclRefExpr *, 16>
/external/llvm-project/llvm/include/llvm/Transforms/IPO/
DGlobalDCE.h34 SmallPtrSet<GlobalValue*, 32> AliveGlobals;
37 DenseMap<GlobalValue *, SmallPtrSet<GlobalValue *, 4>> GVDependencies;
40 std::unordered_map<Constant *, SmallPtrSet<GlobalValue *, 8>>
52 SmallPtrSet<GlobalValue *, 32> VFESafeVTables;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/
DGlobalDCE.h34 SmallPtrSet<GlobalValue*, 32> AliveGlobals;
37 DenseMap<GlobalValue *, SmallPtrSet<GlobalValue *, 4>> GVDependencies;
40 std::unordered_map<Constant *, SmallPtrSet<GlobalValue *, 8>>
52 SmallPtrSet<GlobalValue *, 32> VFESafeVTables;
/external/llvm/unittests/ADT/
DSmallPtrSetTest.cpp24 SmallPtrSet<int *, 4> s1; in TEST()
28 SmallPtrSet<int *, 4> s2; in TEST()
49 SmallPtrSet<int *, 4> s; in TEST()
50 typedef SmallPtrSet<int *, 4>::iterator iter; in TEST()
102 SmallPtrSet<int *, 4> s1; in TEST()
114 SmallPtrSet<int *, 4> s2(s1); in TEST()
131 SmallPtrSet<int *, 4> s3(std::move(s1)); in TEST()
163 SmallPtrSet<int *, 2> a; in TEST()
164 SmallPtrSet<int *, 2> b; in TEST()
269 SmallPtrSet<int *, 8> B; in TEST()
[all …]
/external/llvm/include/llvm/CodeGen/
DLiveRangeEdit.h77 SmallPtrSet<MachineInstr *, 32> *DeadRemats;
81 SmallPtrSet<const VNInfo*,4> Remattable;
85 SmallPtrSet<const VNInfo*,4> Rematted;
101 SmallPtrSet<LiveInterval*, 8> > ToShrinkSet;
129 SmallPtrSet<MachineInstr *, 32> *deadRemats = nullptr)
/external/llvm-project/llvm/include/llvm/CodeGen/
DLiveRangeEdit.h86 SmallPtrSet<MachineInstr *, 32> *DeadRemats;
90 SmallPtrSet<const VNInfo *, 4> Remattable;
94 SmallPtrSet<const VNInfo *, 4> Rematted;
109 SmallPtrSet<LiveInterval *, 8>>;
141 SmallPtrSet<MachineInstr *, 32> *deadRemats = nullptr)
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveRangeEdit.h86 SmallPtrSet<MachineInstr *, 32> *DeadRemats;
90 SmallPtrSet<const VNInfo *, 4> Remattable;
94 SmallPtrSet<const VNInfo *, 4> Rematted;
109 SmallPtrSet<LiveInterval *, 8>>;
141 SmallPtrSet<MachineInstr *, 32> *deadRemats = nullptr)
/external/llvm-project/clang-tools-extra/clang-change-namespace/
DChangeNamespace.h153 llvm::SmallPtrSet<const UsingDecl *, 8> UsingDecls;
156 llvm::SmallPtrSet<const UsingDirectiveDecl *, 8> UsingNamespaceDecls;
159 llvm::SmallPtrSet<const NamespaceAliasDecl *, 8> NamespaceAliasDecls;
166 llvm::SmallPtrSet<const clang::DeclRefExpr*, 16> ProcessedFuncRefs;
/external/llvm-project/clang/examples/CallSuperAttribute/
DCallSuperAttrInfo.cpp38 llvm::SmallPtrSet<const CXXMethodDecl *, 16> MarkedMethods;
48 llvm::SmallPtrSet<const CXXMethodDecl *, 16> &MustCalledMethods) in MethodUsageVisitor()
67 llvm::SmallPtrSet<const CXXMethodDecl *, 16> &MustCalledMethods;
83 llvm::SmallPtrSet<const CXXMethodDecl *, 16> OverriddenMarkedMethods; in VisitCXXMethodDecl()
/external/llvm/lib/Target/AMDGPU/
DAMDGPUAnnotateKernelFeatures.cpp50 SmallPtrSet<const Constant *, 8> &ConstantExprVisited);
83 SmallPtrSet<const Constant *, 8> &ConstantExprVisited) { in visitConstantExprsRecursively()
118 SmallPtrSet<const Constant *, 8> ConstantExprVisited; in hasAddrSpaceCast()
143 SmallPtrSet<Function *, 4> SeenFuncs; in addAttrToCallers()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DPhiValues.h44 using ValueSet = SmallPtrSet<Value *, 4>;
74 using PhiSet = SmallPtrSet<const PHINode *, 4>;
75 using ConstValueSet = SmallPtrSet<const Value *, 4>;
/external/llvm-project/llvm/lib/Target/ARM/
DARMLowOverheadLoops.cpp115 SmallPtrSet<MachineBasicBlock*, 4> Visited;
287 SmallPtrSet<MachineInstr *, 2> Defs; in hasImplicitlyValidVPT()
369 SmallPtrSet<MachineInstr*, 4> ToRemove;
370 SmallPtrSet<MachineInstr*, 4> BlockMasksToRecompute;
537 SmallPtrSet<MachineBasicBlock*, 2> BasicBlocks; in INITIALIZE_PASS()
542 std::map<MachineInstr *, SmallPtrSet<MachineInstr *, 2>> ITBlocks; in INITIALIZE_PASS()
554 SmallPtrSet<MachineInstr *, 2> ModifiedITs; in INITIALIZE_PASS()
555 SmallPtrSet<MachineInstr *, 2> RemoveITs; in INITIALIZE_PASS()
574 SmallPtrSet<MachineInstr *, 2> Uses; in INITIALIZE_PASS()
585 SmallPtrSet<MachineInstr*, 4> Killed; in INITIALIZE_PASS()
[all …]
/external/llvm/include/llvm/Transforms/IPO/
DGlobalDCE.h33 SmallPtrSet<GlobalValue*, 32> AliveGlobals;
34 SmallPtrSet<Constant *, 8> SeenConstants;
/external/llvm-project/llvm/include/llvm/Transforms/Vectorize/
DLoopVectorizationLegality.h236 using RecurrenceSet = SmallPtrSet<const PHINode *, 8>;
478 SmallPtrSet<Instruction *, 4> InductionCastsToIgnore;
492 SmallPtrSet<Value *, 4> AllowedExit;
513 SmallPtrSet<const Instruction *, 8> MaskedOp;
517 SmallPtrSet<Instruction *, 8> ConditionalAssumes;
/external/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp34 SmallPtrSet<const User *, 8> &Visited) { in findRefEdges()
78 SmallPtrSet<const User *, 8> Visited; in computeFunctionSummary()
109 SmallPtrSet<const User *, 8> Visited; in computeVariableSummary()
212 SmallPtrSet<GlobalValue *, 8> Used; in moduleCanBeRenamedForThinLTO()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSSAUpdaterBulk.cpp140 SmallPtrSet<BasicBlock *, 2> DefBlocks; in RewriteAllUses()
145 SmallPtrSet<BasicBlock *, 2> UsingBlocks; in RewriteAllUses()
150 SmallPtrSet<BasicBlock *, 32> LiveInBlocks; in RewriteAllUses()
175 SmallPtrSet<Use *, 4> ProcessedUses; in RewriteAllUses()
/external/llvm-project/llvm/lib/Transforms/Utils/
DSSAUpdaterBulk.cpp140 SmallPtrSet<BasicBlock *, 2> DefBlocks; in RewriteAllUses()
145 SmallPtrSet<BasicBlock *, 2> UsingBlocks; in RewriteAllUses()
150 SmallPtrSet<BasicBlock *, 32> LiveInBlocks; in RewriteAllUses()
175 SmallPtrSet<Use *, 4> ProcessedUses; in RewriteAllUses()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAlwaysInlinePass.cpp61 SmallPtrSet<const Value *, 8> Visited; in recursivelyVisitUsers()
90 SmallPtrSet<Function *, 8> FuncsToAlwaysInline; in runOnModule()
91 SmallPtrSet<Function *, 8> FuncsToNoInline; in runOnModule()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUAlwaysInlinePass.cpp61 SmallPtrSet<const Value *, 8> Visited; in recursivelyVisitUsers()
97 SmallPtrSet<Function *, 8> FuncsToAlwaysInline; in runOnModule()
98 SmallPtrSet<Function *, 8> FuncsToNoInline; in runOnModule()

12345678910>>...45