| /freebsd-src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | IVUsers.cpp | 139 // Add this IV user to the Processed set before returning false to ensure that in AddUsersIfInteresting() 141 if (!Processed.insert(I).second) in AddUsersIfInteresting() 180 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersIfInteresting() 187 // If User is already in Processed, we don't want to recurse into it again, 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() 373 Parent->Processed.erase(this->getUser()); in deleted()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | IVUsers.h | 98 SmallPtrSet<Instruction*, 16> Processed; 113 SE(std::move(X.SE)), Processed(std::move(X.Processed)), in IVUsers() 150 return Processed.count(Inst); in isIVUserOrOperand() 97 SmallPtrSet<Instruction*, 16> Processed; global() variable
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVETailPredication.cpp | 385 PHINode *Processed = Builder.CreatePHI(Ty, 2); in InsertVCTPIntrinsic() local 386 Processed->addIncoming(Start, L->getLoopPreheader()); in InsertVCTPIntrinsic() 403 Value *VCTPCall = Builder.CreateCall(VCTP, Processed); in InsertVCTPIntrinsic() 408 Value *Remaining = Builder.CreateSub(Processed, Factor); in InsertVCTPIntrinsic() 409 Processed->addIncoming(Remaining, L->getLoopLatch()); in InsertVCTPIntrinsic() 411 << *Processed << "\n" in InsertVCTPIntrinsic()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeTypes.cpp | 39 // the node being processed may be put in a map before being marked Processed. in PerformExpensiveChecks() 130 if (Node.getNodeId() != Processed) { in PerformExpensiveChecks() 150 // table and re-check the Processed state. If the node hasn't been in PerformExpensiveChecks() 152 if (NodeById->getNodeId() == Processed) { in PerformExpensiveChecks() 153 dbgs() << "Processed value not in any map!"; in PerformExpensiveChecks() 400 N->setNodeId(Processed); in run() 472 if (Node.getNodeId() != Processed) { in run() 522 if (Op.getNode()->getNodeId() == Processed) in AnalyzeNewNode() 569 if (Val.getNode()->getNodeId() == Processed) in AnalyzeNewValue() 610 N->getNodeId() != DAGTypeLegalizer::Processed in NodeDeleted() [all...] |
| H A D | LegalizeTypes.h | 50 Processed = -3 49 Processed = -3 global() enumerator
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenPredicate.cpp | 514 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()
|
| /freebsd-src/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | macho_platform.cpp | 206 Processed.push_back(New[J]); in processNewSections() 218 New = std::move(Processed); in reset() 225 return removeIfPresent(Processed, R); in removeIfPresent() 230 if (Processed.empty()) in moveNewToProcessed() 231 Processed = std::move(New); in moveNewToProcessed() 233 Processed.reserve(Processed.size() + New.size()); in moveNewToProcessed() 234 std::copy(New.begin(), New.end(), std::back_inserter(Processed)); in moveNewToProcessed() 253 std::vector<span<RecordElement>> Processed; member in __anon068503140211::MachOPlatformRuntimeState::RecordSectionsTracker
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | ScalarEvolutionExpander.h | 251 SmallPtrSet<const SCEV *, 8> Processed; 259 Processed, Worklist)) 429 SmallPtrSetImpl<const SCEV *> &Processed,
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CFIInstrInserter.cpp | 84 bool Processed = false; member 267 MBBInfo.Processed = true; in calculateOutgoingCFAInfo() 289 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
|
| H A D | ComplexDeinterleavingPass.cpp | 1166 std::vector<bool> Processed(Info.size(), false); in identifyMultiplications() local 1168 if (Processed[I]) in identifyMultiplications() 1173 if (Processed[J]) in identifyMultiplications() 1190 Processed[I] = true; in identifyMultiplications() 1191 Processed[J] = true; in identifyMultiplications() 1514 SmallVector<bool> Processed(ReductionInfo.size(), false); in identifyReductionNodes() local 1522 if (Processed[i]) in identifyReductionNodes() 1525 if (Processed[j]) in identifyReductionNodes() 1549 Processed[i] = true; in identifyReductionNodes() 1550 Processed[ in identifyReductionNodes() [all...] |
| H A D | LiveVariables.cpp | 274 SmallSet<unsigned, 8> Processed; in FindLastRefOrPartRef() 276 if (Processed.count(SubReg)) in FindLastRefOrPartRef() 287 Processed.insert(SS); in FindLastRefOrPartRef() 244 SmallSet<unsigned, 8> Processed; HandlePhysRegUse() local
|
| H A D | TwoAddressInstructionPass.cpp | 110 SmallPtrSet<MachineInstr*, 8> Processed; 836 if (IsCopy && !Processed.insert(UseMI).second) in rescheduleMIBelowKill() 882 if (Processed.count(MI)) in rescheduleMIBelowKill() 901 Processed.insert(MI); in rescheduleMIBelowKill() 1848 Processed.clear(); in runOnMachineFunction() 107 SmallPtrSet<MachineInstr*, 8> Processed; global() member in __anonbf3c637f0111::TwoAddressInstructionPass
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.cpp | 1210 DenseSet<DIGlobalVariable *> Processed; in beginModule() local 1213 if (Processed.insert(GV).second) in beginModule() 1529 DwarfCompileUnit &TheCU, DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument 1539 Processed.insert(Var); in collectVariableInfoFromMFTable() 1875 DenseSet<InlinedEntity> &Processed) { in collectEntityInfo() argument 1877 collectVariableInfoFromMFTable(TheCU, Processed); in collectEntityInfo() 1881 if (Processed.count(IV)) in collectEntityInfo() 1902 Processed.insert(IV); in collectEntityInfo() 1976 Processed.insert(IL); in collectEntityInfo() 1988 if (!Processed in collectEntityInfo() 2286 DenseSet<InlinedEntity> Processed; endFunctionImpl() local [all...] |
| H A D | CodeViewDebug.h | 385 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
|
| H A D | CodeViewDebug.cpp | 1275 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument 1288 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable() 1444 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local 1446 collectVariableInfoFromMFTable(Processed); in collectVariableInfo() 1450 if (Processed.count(IV)) in collectVariableInfo()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FloatingPoint.cpp | 350 df_iterator_default_set<MachineBasicBlock*> Processed; in runOnMachineFunction() local 373 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed)) in runOnMachineFunction() 377 if (MF.size() != Processed.size()) in runOnMachineFunction() 379 if (Processed.insert(&BB).second) in runOnMachineFunction()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 796 bool isProcessed() const { return Processed; } in isProcessed() 797 void process() { Processed = true; } in process() 806 bool Processed = false; member in __anon19c0a85d0411::EarlyCSE::StackNode
|
| H A D | LoopStrengthReduce.cpp | 1108 SmallPtrSetImpl<const SCEV*> &Processed, 1118 Processed, SE); 1121 Processed, SE); 1124 Processed, SE); 1129 if (!Processed.insert(S).second) 1134 if (isHighCostExpansion(S, Processed, SE)) 1144 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); 3051 SmallPtrSet<const SCEV*, 8> Processed; in ChainInstruction() 3052 return !isHighCostExpansion(IncExpr, Processed, SE); in ChainInstruction() 972 isHighCostExpansion(const SCEV * S,SmallPtrSetImpl<const SCEV * > & Processed,ScalarEvolution & SE) isHighCostExpansion() argument 2855 SmallPtrSet<const SCEV*, 8> Processed; isProfitableIncrement() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 695 Processed, /// Added to this Decision in ~MCDCDecisionRecorder() 701 /// \returns NotProcessed/Processed/Completed 728 : Processed); in processBranch() 782 case DecisionRecord::Processed: in loadFunctionRecord() 636 Processed, /// Added to this Decision global() enumerator
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | ScalarEvolutionExpander.cpp | 1969 SmallPtrSetImpl<const SCEV *> &Processed, in expandCodeForPredicate() 1976 if (!isa<SCEVConstant>(S) && !Processed.insert(S).second) in expandComparePredicate() 1871 isHighCostExpansionHelper(const SCEVOperand & WorkItem,Loop * L,const Instruction & At,InstructionCost & Cost,unsigned Budget,const TargetTransformInfo & TTI,SmallPtrSetImpl<const SCEV * > & Processed,SmallVectorImpl<SCEVOperand> & Worklist) isHighCostExpansionHelper() argument
|
| /freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 7280 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in EmitOMPUseDeviceAddrClause() 7283 if (!Processed.insert(OrigVD).second) in EmitOMPUseDeviceAddrClause() 7331 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in EmitOMPTargetDataDirective() 7334 if (!Processed.insert(OrigVD).second) in EmitOMPTargetDataDirective() 7208 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; EmitOMPUseDevicePtrClause() local 7259 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; EmitOMPUseDeviceAddrClause() local
|
| H A D | CGOpenMPRuntime.cpp | 8019 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; in generateAllInfoForClauses() 8030 if (!Processed.insert(VD).second) in generateAllInfoForClauses() 7984 llvm::SmallDenseSet<CanonicalDeclPtr<const Decl>, 4> Processed; generateAllInfoForClauses() local
|
| /freebsd-src/contrib/bmake/ |
| H A D | bmake.cat1 | 703 Processed after reading all makefiles. Affects the mode that
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 3571 DenseSet<SDValue> Processed{DominantValue}; in lowerBuildVectorOfConstants() 3589 Processed.insert(LastOp); in lowerBuildVectorOfConstants() 3595 if (V.isUndef() || !Processed.insert(V).second) in lowerBuildVectorOfConstants() 3403 DenseSet<SDValue> Processed{DominantValue}; lowerBuildVectorViaDominantValues() local
|
| /freebsd-src/contrib/sendmail/ |
| H A D | RELEASE_NOTES | 6613 Authentication warnings of "Processed from queue _directory_" and 6614 "Processed by _username_ with -C _filename_" would be logged
|