| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | SVEIntrinsicOpts.cpp | 60 SmallSetVector<IntrinsicInst *, 4> &PTrues); 61 bool optimizePTrueIntrinsicCalls(SmallSetVector<Function *, 4> &Functions); 65 bool optimizeFunctions(SmallSetVector<Function *, 4> &Functions); 136 BasicBlock &BB, SmallSetVector<IntrinsicInst *, 4> &PTrues) { in coalescePTrueIntrinsicCalls() 245 SmallSetVector<Function *, 4> &Functions) { in optimizePTrueIntrinsicCalls() 250 SmallSetVector<IntrinsicInst *, 4> SVAllPTrues; in optimizePTrueIntrinsicCalls() 251 SmallSetVector<IntrinsicInst *, 4> SVPow2PTrues; in optimizePTrueIntrinsicCalls() 280 SmallSetVector<Function *, 4> &Functions) { in optimizeFunctions() 290 SmallSetVector<Function *, 4> Functions; in runOnModule()
|
| H A D | AArch64PBQPRegAlloc.h | 26 SmallSetVector<unsigned, 32> Chains;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIOptimizeVGPRLiveRange.cpp | 106 SmallSetVector<MachineBasicBlock *, 16> &) const; 116 SmallSetVector<Register, 16> &CandidateRegs) const; 127 SmallSetVector<MachineBasicBlock *, 16> &ElseBlocks) const; 132 SmallSetVector<MachineBasicBlock *, 16> &ElseBlocks) const; 175 SmallSetVector<MachineBasicBlock *, 16> &Blocks) const { in collectElseRegionBlocks() 214 SmallSetVector<MachineBasicBlock *, 16> &ElseBlocks, in collectCandidateRegisters() 322 SmallSetVector<Register, 16> &CandidateRegs) const { in collectWaterfallCandidateRegisters() 444 SmallSetVector<MachineBasicBlock *, 16> &ElseBlocks) const { in updateLiveRangeInElseRegion() 474 SmallSetVector<MachineBasicBlock *, 16> &ElseBlocks) const { in optimizeLiveRange() 604 SmallSetVector<MachineBasicBlock *, 16> ElseBlocks; in runOnMachineFunction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVELaneInterleavingPass.cpp | 114 static bool isProfitableToInterleave(SmallSetVector<Instruction *, 4> &Exts, in isProfitableToInterleave() 115 SmallSetVector<Instruction *, 4> &Truncs) { in isProfitableToInterleave() 166 SmallSetVector<Instruction *, 4> Truncs; in tryInterleave() 167 SmallSetVector<Instruction *, 4> Exts; in tryInterleave() 168 SmallSetVector<Use *, 4> OtherLeafs; in tryInterleave() 169 SmallSetVector<Instruction *, 4> Ops; in tryInterleave()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SetVector.h | 307 class SmallSetVector 310 SmallSetVector() = default; 314 SmallSetVector(It Start, It End) { in SmallSetVector() function 333 swap(llvm::SmallSetVector<T, N> &LHS, llvm::SmallSetVector<T, N> &RHS) { in swap()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ExternalSemaSource.h | 23 template <class T, unsigned n> class SmallSetVector; variable 146 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) {} in ReadUnusedLocalTypedefNameCandidates() 203 ReadDeclsToCheckForDeferredDiags(llvm::SmallSetVector<Decl *, 4> &Decls) {} in ReadDeclsToCheckForDeferredDiags()
|
| H A D | MultiplexExternalSemaSource.h | 284 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) override; 340 llvm::SmallSetVector<Decl *, 4> &Decls) override;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | PhiValues.h | 43 using ValueSet = SmallSetVector<Value *, 4>; 73 using ConstValueSet = SmallSetVector<const Value *, 4>;
|
| H A D | InstructionSimplify.h | 56 template <class T, unsigned n> class SmallSetVector; variable 340 SmallSetVector<Instruction *, 8> *UnsimplifiedUsers = nullptr);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | DCE.cpp | 89 SmallSetVector<Instruction *, 16> &WorkList, in DCEInstruction() 124 SmallSetVector<Instruction *, 16> WorkList; in eliminateDeadCode()
|
| H A D | LICM.cpp | 191 static SmallVector<SmallSetVector<Value *, 8>, 0> 494 SmallSetVector<Value *, 8> PointerMustAliases; in runOnLoop() 509 for (const SmallSetVector<Value *, 8> &PointerMustAliases : in runOnLoop() 1657 SmallSetVector<BasicBlock *, 8> PredBBs(pred_begin(ExitBB), pred_end(ExitBB)); in splitPredecessorsOfLoopExit() 1765 SmallSetVector<User*, 8> Users(I.user_begin(), I.user_end()); in sink() 1873 const SmallSetVector<Value *, 8> &PointerMustAliases; 1906 const SmallSetVector<Value *, 8> &PMA, in LoopPromoter() 2021 const SmallSetVector<Value *, 8> &PointerMustAliases, in promoteLoopAccessesToScalars() 2307 static SmallVector<SmallSetVector<Value *, 8>, 0> 2348 SmallVector<SmallSetVector<Value *, 8>, 0> Result; in collectPromotionCandidates() [all …]
|
| H A D | GVNSink.cpp | 121 SmallSetVector<BasicBlock *, 4> ActiveBlocks; 157 SmallSetVector<BasicBlock *, 4> &getActiveBlocks() { return ActiveBlocks; } in getActiveBlocks() 159 void restrictToBlocks(SmallSetVector<BasicBlock *, 4> &Blocks) { in restrictToBlocks() 274 void restrictToBlocks(const SmallSetVector<BasicBlock *, 4> &NewBlocks) { in restrictToBlocks()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LCSSA.cpp | 84 SmallSetVector<PHINode *, 16> LocalPHIsToRemove; in formLCSSAForInstructions() 296 SmallSetVector<BasicBlock *, 8> &BlocksDominatingExits) { in computeBlocksDominatingExits() 351 SmallSetVector<BasicBlock *, 8> BlocksDominatingExits; in formLCSSA()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
| H A D | Float2Int.h | 46 SmallSetVector<Instruction *, 8> Roots;
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTImporterLookupTable.h | 53 using DeclList = llvm::SmallSetVector<NamedDecl *, 2>;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | Localizer.h | 65 typedef SmallSetVector<MachineInstr *, 32> LocalizedSetVecT;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | SetTheory.h | 67 using RecSet = SmallSetVector<Record *, 16>;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | LoopUtils.h | 52 template <typename T, unsigned N> class SmallSetVector; variable 199 const SmallSetVector<Value *, 8> &, SmallVectorImpl<BasicBlock *> &,
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/ |
| H A D | InstCombineWorklist.h | 33 SmallSetVector<Instruction *, 16> Deferred;
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderSearchOptions.h | 175 llvm::SmallSetVector<llvm::CachedHashString, 16> ModulesIgnoreMacros;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TailDuplicator.h | 114 SmallSetVector<MachineBasicBlock *, 8> &Succs);
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Module.h | 169 llvm::SmallSetVector<const FileEntry *, 2> TopHeaders; 327 llvm::SmallSetVector<Module *, 2> Imports;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ProcessImplicitDefs.cpp | 33 SmallSetVector<MachineInstr*, 16> WorkList;
|
| H A D | TailDuplicator.cpp | 105 SmallSetVector<MachineBasicBlock *, 8> Preds(MBB->pred_begin(), in VerifyPHIs() 165 SmallSetVector<MachineBasicBlock *, 8> Succs(MBB->succ_begin(), in tailDuplicateAndUpdate() 477 SmallSetVector<MachineBasicBlock *, 8> &Succs) { in updateSuccessorsPHIs() 840 SmallSetVector<MachineBasicBlock *, 8> Preds; in tailDuplicate()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 912 [&](const SmallSetVector<BasicBlock *, 2> &BBSet) -> BasicBlock * { in applyInsertUpdates() 952 SmallSetVector<BasicBlock *, 2> Added; in applyInsertUpdates() 953 SmallSetVector<BasicBlock *, 2> Prev; in applyInsertUpdates() 1103 SmallSetVector<MemoryPhi *, 4> PhisToFill; in applyInsertUpdates() 1324 SmallSetVector<MemoryPhi *, 4> PhisToCheck; in removeMemoryAccess() 1373 const SmallSetVector<BasicBlock *, 8> &DeadBlocks) { in removeBlocks()
|