Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp358 PHINode *Processed = Builder.CreatePHI(Ty, 2); in InsertVCTPIntrinsic() local
359 Processed->addIncoming(ActiveLaneMask->getOperand(1), L->getLoopPreheader()); in InsertVCTPIntrinsic()
381 Value *VCTPCall = Builder.CreateCall(VCTP, Processed); in InsertVCTPIntrinsic()
386 Value *Remaining = Builder.CreateSub(Processed, Factor); in InsertVCTPIntrinsic()
387 Processed->addIncoming(Remaining, L->getLoopLatch()); in InsertVCTPIntrinsic()
389 << *Processed << "\n" in InsertVCTPIntrinsic()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVUsers.h100 SmallPtrSet<Instruction*, 16> Processed; variable
115 SE(std::move(X.SE)), Processed(std::move(X.Processed)), in IVUsers()
151 return Processed.count(Inst); in isIVUserOrOperand()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/tools/opt/
H A DBreakpointPrinter.cpp45 StringSet<> Processed; in runOnModule() local
54 if (!Name.empty() && Processed.insert(Name).second) { in runOnModule()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp130 if (Node.getNodeId() != Processed) { in PerformExpensiveChecks()
396 N->setNodeId(Processed); in run()
468 if (Node.getNodeId() != Processed) { in run()
518 if (Op.getNode()->getNodeId() == Processed) in AnalyzeNewNode()
564 if (Val.getNode()->getNodeId() == Processed) in AnalyzeNewValue()
605 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeDeleted()
629 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeUpdated()
681 if (M->getNodeId() == Processed) in ReplaceValueWith()
H A DLegalizeTypes.h50 Processed = -3 enumerator
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenPredicate.cpp516 VectOfInst Processed, Copy; in runOnMachineFunction() local
525 Processed.insert(MI); in runOnMachineFunction()
531 auto Done = [Processed] (MachineInstr *MI) -> bool { in runOnMachineFunction()
532 return Processed.count(MI); in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h246 SmallPtrSet<const SCEV *, 8> Processed;
253 Processed, Worklist))
414 SmallPtrSetImpl<const SCEV *> &Processed,
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCFIInstrInserter.cpp87 bool Processed = false; member
268 MBBInfo.Processed = true; in calculateOutgoingCFAInfo()
290 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
H A DLiveVariables.cpp248 SmallSet<unsigned, 8> Processed; in HandlePhysRegUse() local
251 if (Processed.count(SubReg)) in HandlePhysRegUse()
262 Processed.insert(*SS); in HandlePhysRegUse()
H A DTwoAddressInstructionPass.cpp109 SmallPtrSet<MachineInstr*, 8> Processed; member in __anon5550eba10111::TwoAddressInstructionPass
647 if (IsCopy && !Processed.insert(UseMI).second) in scanUses()
696 if (Processed.count(MI)) in processCopy()
715 Processed.insert(MI); in processCopy()
1561 Processed.clear(); in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1225 DenseSet<DIGlobalVariable *> Processed; in beginModule() local
1228 if (Processed.insert(GV).second) in beginModule()
1526 Processed.insert(Var); in collectVariableInfoFromMFTable()
1840 collectVariableInfoFromMFTable(TheCU, Processed); in collectEntityInfo()
1844 if (Processed.count(IV)) in collectEntityInfo()
1865 Processed.insert(IV); in collectEntityInfo()
1939 Processed.insert(IL); in collectEntityInfo()
1949 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in collectEntityInfo()
2191 DenseSet<InlinedEntity> Processed; in endFunctionImpl() local
2192 collectEntityInfo(TheCU, SP, Processed); in endFunctionImpl()
[all …]
H A DCodeViewDebug.h347 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
H A DCodeViewDebug.cpp1178 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument
1190 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable()
1335 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local
1337 collectVariableInfoFromMFTable(Processed); in collectVariableInfo()
1341 if (Processed.count(IV)) in collectVariableInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp351 df_iterator_default_set<MachineBasicBlock*> Processed; in runOnMachineFunction() local
374 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed)) in runOnMachineFunction()
378 if (MF.size() != Processed.size()) in runOnMachineFunction()
380 if (Processed.insert(&BB).second) in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp663 bool isProcessed() const { return Processed; } in isProcessed()
664 void process() { Processed = true; } in process()
673 bool Processed = false; member in __anon0a18f2bf0311::EarlyCSE::StackNode
H A DLoopStrengthReduce.cpp957 SmallPtrSetImpl<const SCEV*> &Processed, in isHighCostExpansion() argument
966 Processed, SE); in isHighCostExpansion()
969 Processed, SE); in isHighCostExpansion()
972 Processed, SE); in isHighCostExpansion()
977 if (!Processed.insert(S).second) in isHighCostExpansion()
982 if (isHighCostExpansion(S, Processed, SE)) in isHighCostExpansion()
992 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); in isHighCostExpansion()
2856 SmallPtrSet<const SCEV*, 8> Processed; in isProfitableIncrement() local
2857 return !isHighCostExpansion(IncExpr, Processed, SE); in isProfitableIncrement()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2384 SmallPtrSetImpl<const SCEV *> &Processed, in isHighCostExpansionHelper() argument
2391 if (!isa<SCEVConstant>(S) && !Processed.insert(S).second) in isHighCostExpansionHelper()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp6543 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in EmitOMPUseDeviceAddrClause() local
6546 if (!Processed.insert(OrigVD).second) in EmitOMPUseDeviceAddrClause()
H A DCGOpenMPRuntime.cpp8689 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in generateAllInfoForClauses() local
8698 if (!Processed.insert(VD).second) in generateAllInfoForClauses()
/freebsd-13.1/contrib/bmake/
H A Dbmake.cat1586 .MAKE.MODE Processed after reading all makefiles. Can affect the
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1735 DenseSet<SDValue> Processed{DominantValue}; in lowerBUILD_VECTOR() local
1739 if (V.isUndef() || !Processed.insert(V).second) in lowerBUILD_VECTOR()
/freebsd-13.1/contrib/sendmail/
H A DRELEASE_NOTES6315 Authentication warnings of "Processed from queue _directory_" and
6316 "Processed by _username_ with -C _filename_" would be logged
/freebsd-13.1/contrib/unbound/doc/
H A DChangelog3102 - Processed aggressive NSEC code review remarks Wouter