Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp363 PHINode *Processed = Builder.CreatePHI(Ty, 2); in InsertVCTPIntrinsic() local
364 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()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DIVUsers.cpp141 if (!Processed.insert(I).second) in AddUsersIfInteresting()
180 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersIfInteresting()
191 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersIfInteresting()
197 } else if (Processed.count(User) || !AddUsersIfInteresting(User)) { in AddUsersIfInteresting()
296 Processed.clear(); in releaseMemory()
370 Parent->Processed.erase(this->getUser()); in deleted()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DIVUsers.h97 SmallPtrSet<Instruction*, 16> Processed; variable
112 SE(std::move(X.SE)), Processed(std::move(X.Processed)), in IVUsers()
148 return Processed.count(Inst); in isIVUserOrOperand()
/llvm-project-15.0.7/llvm/tools/opt/
H A DBreakpointPrinter.cpp45 StringSet<> Processed; in runOnModule() local
54 if (!Name.empty() && Processed.insert(Name).second) { in runOnModule()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp130 if (Node.getNodeId() != Processed) { in PerformExpensiveChecks()
152 if (NodeById->getNodeId() == Processed) { in PerformExpensiveChecks()
403 N->setNodeId(Processed); in run()
475 if (Node.getNodeId() != Processed) { in run()
525 if (Op.getNode()->getNodeId() == Processed) in AnalyzeNewNode()
572 if (Val.getNode()->getNodeId() == Processed) in AnalyzeNewValue()
613 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeDeleted()
637 N->getNodeId() != DAGTypeLegalizer::Processed && in NodeUpdated()
689 if (M->getNodeId() == Processed) in ReplaceValueWith()
H A DLegalizeTypes.h49 Processed = -3 enumerator
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonGenPredicate.cpp514 VectOfInst Processed, Copy; in runOnMachineFunction() local
520 Processed.insert(MI); in runOnMachineFunction()
526 auto Done = [Processed] (MachineInstr *MI) -> bool { in runOnMachineFunction()
527 return Processed.count(MI); in runOnMachineFunction()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h233 SmallPtrSet<const SCEV *, 8> Processed;
240 Processed, Worklist))
412 SmallPtrSetImpl<const SCEV *> &Processed,
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCFIInstrInserter.cpp85 bool Processed = false; member
266 MBBInfo.Processed = true; in calculateOutgoingCFAInfo()
288 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
H A DLiveVariables.cpp247 SmallSet<unsigned, 8> Processed; in HandlePhysRegUse() local
250 if (Processed.count(SubReg)) in HandlePhysRegUse()
261 Processed.insert(*SS); in HandlePhysRegUse()
H A DTwoAddressInstructionPass.cpp107 SmallPtrSet<MachineInstr*, 8> Processed; member in __anon568a009d0111::TwoAddressInstructionPass
731 if (IsCopy && !Processed.insert(UseMI).second) in scanUses()
777 if (Processed.count(MI)) in processCopy()
796 Processed.insert(MI); in processCopy()
1725 Processed.clear(); in runOnMachineFunction()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1217 DenseSet<DIGlobalVariable *> Processed; in beginModule() local
1220 if (Processed.insert(GV).second) in beginModule()
1520 Processed.insert(Var); in collectVariableInfoFromMFTable()
1834 collectVariableInfoFromMFTable(TheCU, Processed); in collectEntityInfo()
1838 if (Processed.count(IV)) in collectEntityInfo()
1859 Processed.insert(IV); in collectEntityInfo()
1933 Processed.insert(IL); in collectEntityInfo()
1943 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in collectEntityInfo()
2213 DenseSet<InlinedEntity> Processed; in endFunctionImpl() local
2214 collectEntityInfo(TheCU, SP, Processed); in endFunctionImpl()
[all …]
H A DCodeViewDebug.h363 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
H A DCodeViewDebug.cpp1258 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument
1270 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable()
1409 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local
1411 collectVariableInfoFromMFTable(Processed); in collectVariableInfo()
1415 if (Processed.count(IV)) in collectVariableInfo()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp658 bool isProcessed() const { return Processed; } in isProcessed()
659 void process() { Processed = true; } in process()
668 bool Processed = false; member in __anon5cb5eb3b0311::EarlyCSE::StackNode
H A DLoopStrengthReduce.cpp960 SmallPtrSetImpl<const SCEV*> &Processed, in isHighCostExpansion() argument
969 Processed, SE); in isHighCostExpansion()
972 Processed, SE); in isHighCostExpansion()
975 Processed, SE); in isHighCostExpansion()
980 if (!Processed.insert(S).second) in isHighCostExpansion()
985 if (isHighCostExpansion(S, Processed, SE)) in isHighCostExpansion()
995 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); in isHighCostExpansion()
2857 SmallPtrSet<const SCEV*, 8> Processed; in isProfitableIncrement() local
2858 return !isHighCostExpansion(IncExpr, Processed, SE); in isProfitableIncrement()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp2248 SmallPtrSetImpl<const SCEV *> &Processed, in isHighCostExpansionHelper() argument
2255 if (!isa<SCEVConstant>(S) && !Processed.insert(S).second) in isHighCostExpansionHelper()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp7225 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in EmitOMPUseDeviceAddrClause() local
7228 if (!Processed.insert(OrigVD).second) in EmitOMPUseDeviceAddrClause()
H A DCGOpenMPRuntime.cpp8638 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in generateAllInfoForClauses() local
8647 if (!Processed.insert(VD).second) in generateAllInfoForClauses()
/llvm-project-15.0.7/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp2362 DenseSet<SDValue> Processed{DominantValue}; in lowerBUILD_VECTOR() local
2366 if (V.isUndef() || !Processed.insert(V).second) in lowerBUILD_VECTOR()