Home
last modified time | relevance | path

Searched refs:SmallSetVector (Results 1 – 25 of 41) sorted by relevance

12

/external/llvm/include/llvm/ADT/
DSetVector.h217 class SmallSetVector : public SetVector<T, SmallVector<T, N>, SmallSet<T, N> > {
219 SmallSetVector() {} in SmallSetVector() function
223 SmallSetVector(It Start, It End) { in SmallSetVector() function
/external/llvm/lib/CodeGen/
DTailDuplication.cpp105 SmallSetVector<MachineBasicBlock*, 8> &Succs);
165 SmallSetVector<MachineBasicBlock*, 8> Preds(MBB->pred_begin(), in VerifyPHIs()
171 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(), in VerifyPHIs()
216 SmallSetVector<MachineBasicBlock*, 8> Succs(MBB->succ_begin(), in TailDuplicateAndUpdate()
465 SmallSetVector<MachineBasicBlock*,8> &Succs) { in UpdateSuccessorsPHIs()
466 for (SmallSetVector<MachineBasicBlock*, 8>::iterator SI = Succs.begin(), in UpdateSuccessorsPHIs()
679 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(), in duplicateSimpleBB()
766 SmallSetVector<MachineBasicBlock*, 8> Preds(TailBB->pred_begin(), in TailDuplicate()
768 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(), in TailDuplicate()
932 for (SmallSetVector<MachineBasicBlock *, 8>::iterator PI = Preds.begin(), in TailDuplicate()
DMachineCopyPropagation.cpp138 SmallSetVector<MachineInstr*, 8> MaybeDeadCopies; // Candidates for deletion in CopyPropagateBlock()
278 for (SmallSetVector<MachineInstr*, 8>::iterator in CopyPropagateBlock()
318 for (SmallSetVector<MachineInstr*, 8>::iterator in CopyPropagateBlock()
DProcessImplicitDefs.cpp33 SmallSetVector<MachineInstr*, 16> WorkList;
DLocalStackSlotAllocation.cpp68 typedef SmallSetVector<int, 8> StackObjSet;
DSjLjEHPrepare.cpp375 SmallSetVector<LandingPadInst *, 16> LPads; in setupEntryBlockAndCallSites()
DPrologEpilogInserter.cpp155 typedef SmallSetVector<int, 8> StackObjSet;
/external/clang/include/clang/Sema/
DExternalSemaSource.h24 template <class T, unsigned n> class SmallSetVector; variable
138 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) {}; in ReadUnusedLocalTypedefNameCandidates()
DMultiplexExternalSemaSource.h288 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) override;
/external/llvm/lib/Target/AArch64/
DAArch64PBQPRegAlloc.h25 SmallSetVector<unsigned, 32> Chains;
/external/llvm/include/llvm/TableGen/
DSetTheory.h66 typedef SmallSetVector<Record*, 16> RecSet;
/external/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp82 SmallSetVector<Value *, 16> &DeadStackObjects,
119 SmallSetVector<Value*, 16> *ValueSet = nullptr) { in DeleteDeadInstruction()
704 SmallSetVector<Value*, 16> DeadStackObjects; in handleEndBlock()
849 SmallSetVector<Value *, 16> &DeadStackObjects, in RemoveAccessedObjects()
DLoopStrengthReduce.cpp1668 SmallSetVector<int64_t, 8> Factors;
1671 SmallSetVector<Type *, 4> Types;
2378 SmallSetVector<const SCEV *, 4> Strides; in CollectInterestingTypesAndFactors()
2403 for (SmallSetVector<const SCEV *, 4>::const_iterator in CollectInterestingTypesAndFactors()
2405 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter = in CollectInterestingTypesAndFactors()
3506 for (SmallSetVector<int64_t, 8>::const_iterator in GenerateICmpZeroScales()
3593 for (SmallSetVector<int64_t, 8>::const_iterator in GenerateScales()
3652 for (SmallSetVector<Type *, 4>::const_iterator in GenerateTruncates()
4301 SmallSetVector<const SCEV *, 4> ReqRegs; in SolveRecurse()
4316 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(), in SolveRecurse()
[all …]
DLoopUnrollPass.cpp466 SmallSetVector<Instruction *, 8> Worklist; in estimateNumberOfOptimizedInstructions()
DGVN.cpp2735 SmallSetVector<BasicBlock *, 4> DF; in addDeadBlock()
2780 for(SmallSetVector<BasicBlock *, 4>::iterator I = DF.begin(), E = DF.end(); in addDeadBlock()
/external/clang/test/SemaCXX/
Dtypo-correction.cpp508 class SmallSetVector : public SetVector<C, I, 8> {}; class
511 SmallSetVector<foo*, 2> fooSet;
/external/clang/include/clang/Serialization/
DASTWriter.h355 llvm::SmallSetVector<const DeclContext *, 16> UpdatedDeclContexts;
361 typedef llvm::SmallSetVector<const Decl *, 16> DeclsToRewriteTy;
390 llvm::SmallSetVector<Decl *, 4> Redeclarations;
/external/llvm/lib/Analysis/
DTypeBasedAliasAnalysis.cpp582 SmallSetVector<MDNode *, 4> PathA; in getMostGenericTBAA()
592 SmallSetVector<MDNode *, 4> PathB; in getMostGenericTBAA()
DMemDepPrinter.cpp38 typedef SmallSetVector<Dep, 4> DepSet;
/external/clang/include/clang/Basic/
DModule.h80 llvm::SmallSetVector<const FileEntry *, 2> TopHeaders;
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypes.cpp640 SmallSetVector<SDNode*, 16> &NodesToAnalyze;
643 SmallSetVector<SDNode*, 16> &nta) in NodeUpdateListener()
694 SmallSetVector<SDNode*, 16> NodesToAnalyze; in ReplaceValueWith()
/external/llvm/lib/Transforms/Utils/
DLoopSimplify.cpp563 SmallSetVector<BasicBlock *, 8> ExitBlockSet(ExitBlocks.begin(), in simplifyOneLoop()
565 for (SmallSetVector<BasicBlock *, 8>::iterator I = ExitBlockSet.begin(), in simplifyOneLoop()
/external/clang/lib/Sema/
DMultiplexExternalSemaSource.cpp248 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) { in ReadUnusedLocalTypedefNameCandidates()
/external/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp59 typedef llvm::SmallSetVector<const ObjCMethodDecl*, 2> MethodSet;
/external/llvm/lib/Linker/
DLinkModules.cpp1304 SmallSetVector<MDNode*, 16> Requirements; in linkModuleFlagsMetadata()
1414 SmallSetVector<Metadata *, 16> Elts; in linkModuleFlagsMetadata()

12