Home
last modified time | relevance | path

Searched refs:Processed (Results 1 – 23 of 23) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DIVUsers.h101 SmallPtrSet<Instruction*, 16> Processed; variable
116 SE(std::move(X.SE)), Processed(std::move(X.Processed)), in IVUsers()
152 return Processed.count(Inst); in isIVUserOrOperand()
H A DScalarEvolutionExpander.h179 SmallPtrSet<const SCEV *, 8> Processed;
180 return isHighCostExpansionHelper(Expr, L, At, Processed);
316 SmallPtrSetImpl<const SCEV *> &Processed);
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DCFIInstrInserter.cpp82 bool Processed = false; member
153 if (MBBVector[MBB.getNumber()].Processed) continue; in calculateCFAInfo()
217 MBBInfo.Processed = true; in calculateOutgoingCFAInfo()
231 if (CurrentInfo.Processed) in updateSuccCFAInfo()
237 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
H A DLiveVariables.cpp250 SmallSet<unsigned, 8> Processed; in HandlePhysRegUse() local
253 if (Processed.count(SubReg)) in HandlePhysRegUse()
264 Processed.insert(*SS); in HandlePhysRegUse()
H A DTwoAddressInstructionPass.cpp111 SmallPtrSet<MachineInstr*, 8> Processed; member in __anone51a3c320111::TwoAddressInstructionPass
783 if (IsCopy && !Processed.insert(UseMI).second) in scanUses()
832 if (Processed.count(MI)) in processCopy()
851 Processed.insert(MI); in processCopy()
1702 Processed.clear(); in runOnMachineFunction()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DIVUsers.cpp174 if (!Processed.insert(I).second) in AddUsersImpl()
213 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersImpl()
236 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersImpl()
242 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl()
350 Processed.clear(); in releaseMemory()
424 Parent->Processed.erase(this->getUser()); in deleted()
H A DScalarEvolutionExpander.cpp2046 SmallPtrSetImpl<const SCEV *> &Processed) { in isHighCostExpansionHelper() argument
2060 L, At, Processed); in isHighCostExpansionHelper()
2063 L, At, Processed); in isHighCostExpansionHelper()
2066 L, At, Processed); in isHighCostExpansionHelper()
2069 if (!Processed.insert(S).second) in isHighCostExpansionHelper()
2113 if (isHighCostExpansionHelper(Op, L, At, Processed)) in isHighCostExpansionHelper()
/freebsd-12.1/contrib/llvm/tools/opt/
H A DBreakpointPrinter.cpp46 StringSet<> Processed; in runOnModule() local
55 if (!Name.empty() && Processed.insert(Name).second) { in runOnModule()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp130 if (Node.getNodeId() != Processed) { in PerformExpensiveChecks()
386 N->setNodeId(Processed); in run()
467 if (Node.getNodeId() != Processed) { in run()
517 if (Op.getNode()->getNodeId() == Processed) in AnalyzeNewNode()
563 if (Val.getNode()->getNodeId() == Processed) in AnalyzeNewValue()
604 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeDeleted()
628 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeUpdated()
681 if (M->getNodeId() == Processed) in ReplaceValueWith()
H A DLegalizeTypes.h51 Processed = -3 enumerator
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonGenPredicate.cpp513 VectOfInst Processed, Copy; in runOnMachineFunction() local
522 Processed.insert(MI); in runOnMachineFunction()
528 auto Done = [Processed] (MachineInstr *MI) -> bool { in runOnMachineFunction()
529 return Processed.count(MI); in runOnMachineFunction()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp781 DenseSet<DIGlobalVariable *> Processed; in beginModule() local
784 if (Processed.insert(GV).second) in beginModule()
1042 Processed.insert(Var); in collectVariableInfoFromMFTable()
1319 collectVariableInfoFromMFTable(TheCU, Processed); in collectEntityInfo()
1323 if (Processed.count(IV)) in collectEntityInfo()
1341 Processed.insert(IV); in collectEntityInfo()
1395 Processed.insert(IL); in collectEntityInfo()
1405 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in collectEntityInfo()
1582 DenseSet<InlinedEntity> Processed; in endFunctionImpl() local
1583 collectEntityInfo(TheCU, SP, Processed); in endFunctionImpl()
[all …]
H A DCodeViewDebug.h343 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
H A DCodeViewDebug.cpp1099 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument
1111 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable()
1247 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local
1249 collectVariableInfoFromMFTable(Processed); in collectVariableInfo()
1253 if (Processed.count(IV)) in collectVariableInfo()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp473 bool isProcessed() { return Processed; } in isProcessed()
474 void process() { Processed = true; } in process()
483 bool Processed = false; member in __anonb85134700311::EarlyCSE::StackNode
H A DLoopStrengthReduce.cpp896 SmallPtrSetImpl<const SCEV*> &Processed, in isHighCostExpansion() argument
905 Processed, SE); in isHighCostExpansion()
908 Processed, SE); in isHighCostExpansion()
911 Processed, SE); in isHighCostExpansion()
914 if (!Processed.insert(S).second) in isHighCostExpansion()
919 if (isHighCostExpansion(S, Processed, SE)) in isHighCostExpansion()
929 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); in isHighCostExpansion()
2791 SmallPtrSet<const SCEV*, 8> Processed; in isProfitableIncrement() local
2792 return !isHighCostExpansion(IncExpr, Processed, SE); in isProfitableIncrement()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp345 df_iterator_default_set<MachineBasicBlock*> Processed; in runOnMachineFunction() local
368 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed)) in runOnMachineFunction()
372 if (MF.size() != Processed.size()) in runOnMachineFunction()
374 if (Processed.insert(&BB).second) in runOnMachineFunction()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h785 SmallPtrSet<TreeNodePtr, 8> Processed; in VisitInsertion() local
801 if (Processed.count(Next) > 0) in VisitInsertion()
833 Processed.insert(Next); in VisitInsertion()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DRelocations.cpp1051 if (unsigned Processed = in scanReloc() local
1053 I += (Processed - 1); in scanReloc()
/freebsd-12.1/contrib/binutils/binutils/po/
H A Dbinutils.pot571 msgid "Processed def file"
730 msgid "Processed definitions"
/freebsd-12.1/contrib/bmake/
H A Dbmake.cat1548 .MAKE.MODE Processed after reading all makefiles. Can affect the
/freebsd-12.1/contrib/sendmail/
H A DRELEASE_NOTES6197 Authentication warnings of "Processed from queue _directory_" and
6198 "Processed by _username_ with -C _filename_" would be logged
/freebsd-12.1/contrib/unbound/doc/
H A DChangelog1685 - Processed aggressive NSEC code review remarks Wouter