/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | IVUsers.cpp | 141 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()
|
/openbsd/gnu/llvm/llvm/lib/Target/ARM/ |
H A D | MVETailPredication.cpp | 363 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()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | IVUsers.h | 97 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()
|
/openbsd/gnu/llvm/llvm/tools/opt/ |
H A D | BreakpointPrinter.cpp | 45 StringSet<> Processed; in runOnModule() local 54 if (!Name.empty() && Processed.insert(Name).second) { in runOnModule()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeTypes.cpp | 130 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 D | LegalizeTypes.h | 49 Processed = -3 enumerator
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/compiler-rt/lib/orc/ |
H A D | macho_platform.cpp | 217 Processed.push_back(New[J]); in processNewSections() 229 New = std::move(Processed); in reset() 236 return removeIfPresent(Processed, R); in removeIfPresent() 241 if (Processed.empty()) in moveNewToProcessed() 242 Processed = std::move(New); in moveNewToProcessed() 244 Processed.reserve(Processed.size() + New.size()); in moveNewToProcessed() 245 std::copy(New.begin(), New.end(), std::back_inserter(Processed)); in moveNewToProcessed() 264 std::vector<span<RecordElement>> Processed; member in __anon217c3caf0211::MachOPlatformRuntimeState::RecordSectionsTracker
|
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.h | 233 SmallPtrSet<const SCEV *, 8> Processed; 241 Processed, Worklist)) 419 SmallPtrSetImpl<const SCEV *> &Processed,
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | CFIInstrInserter.cpp | 84 bool Processed = false; member 265 MBBInfo.Processed = true; in calculateOutgoingCFAInfo() 287 if (!SuccInfo.Processed) { in updateSuccCFAInfo()
|
H A D | LiveVariables.cpp | 247 SmallSet<unsigned, 8> Processed; in HandlePhysRegUse() local 250 if (Processed.count(SubReg)) in HandlePhysRegUse() 261 Processed.insert(*SS); in HandlePhysRegUse()
|
H A D | TwoAddressInstructionPass.cpp | 107 SmallPtrSet<MachineInstr*, 8> Processed; member in __anon1db5081a0111::TwoAddressInstructionPass 731 if (IsCopy && !Processed.insert(UseMI).second) in scanUses() 777 if (Processed.count(MI)) in processCopy() 796 Processed.insert(MI); in processCopy() 1763 Processed.clear(); in runOnMachineFunction()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfDebug.cpp | 1243 DenseSet<DIGlobalVariable *> Processed; in beginModule() local 1246 if (Processed.insert(GV).second) in beginModule() 1546 Processed.insert(Var); in collectVariableInfoFromMFTable() 1860 collectVariableInfoFromMFTable(TheCU, Processed); in collectEntityInfo() 1864 if (Processed.count(IV)) in collectEntityInfo() 1885 Processed.insert(IV); in collectEntityInfo() 1959 Processed.insert(IL); in collectEntityInfo() 1969 if (!Processed.insert(InlinedEntity(DN, nullptr)).second) in collectEntityInfo() 2249 DenseSet<InlinedEntity> Processed; in endFunctionImpl() local 2250 collectEntityInfo(TheCU, SP, Processed); in endFunctionImpl() [all …]
|
H A D | CodeViewDebug.h | 364 void collectVariableInfoFromMFTable(DenseSet<InlinedEntity> &Processed);
|
H A D | CodeViewDebug.cpp | 1259 DenseSet<InlinedEntity> &Processed) { in collectVariableInfoFromMFTable() argument 1271 Processed.insert(InlinedEntity(VI.Var, VI.Loc->getInlinedAt())); in collectVariableInfoFromMFTable() 1420 DenseSet<InlinedEntity> Processed; in collectVariableInfo() local 1422 collectVariableInfoFromMFTable(Processed); in collectVariableInfo() 1426 if (Processed.count(IV)) in collectVariableInfo()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86FloatingPoint.cpp | 351 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()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 682 bool isProcessed() const { return Processed; } in isProcessed() 683 void process() { Processed = true; } in process() 692 bool Processed = false; member in __anon939f15580311::EarlyCSE::StackNode
|
H A D | LoopStrengthReduce.cpp | 973 SmallPtrSetImpl<const SCEV*> &Processed, in isHighCostExpansion() argument 982 Processed, SE); in isHighCostExpansion() 985 Processed, SE); in isHighCostExpansion() 988 Processed, SE); in isHighCostExpansion() 993 if (!Processed.insert(S).second) in isHighCostExpansion() 998 if (isHighCostExpansion(S, Processed, SE)) in isHighCostExpansion() 1008 return isHighCostExpansion(Mul->getOperand(1), Processed, SE); in isHighCostExpansion() 2865 SmallPtrSet<const SCEV*, 8> Processed; in isProfitableIncrement() local 2866 return !isHighCostExpansion(IncExpr, Processed, SE); in isProfitableIncrement()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | ScalarEvolutionExpander.cpp | 2239 SmallPtrSetImpl<const SCEV *> &Processed, in isHighCostExpansionHelper() argument 2246 if (!isa<SCEVConstant>(S) && !Processed.insert(S).second) in isHighCostExpansionHelper()
|
/openbsd/gnu/usr.bin/binutils/binutils/po/ |
H A D | binutils.pot | 504 msgid "Processed def file" 658 msgid "Processed definitions"
|
H A D | ja.po | 441 msgid "Processed def file" 595 msgid "Processed definitions"
|
H A D | zh_CN.po | 513 msgid "Processed def file" 667 msgid "Processed definitions"
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/po/ |
H A D | ja.po | 441 msgid "Processed def file" 595 msgid "Processed definitions"
|
H A D | zh_CN.po | 513 msgid "Processed def file" 667 msgid "Processed definitions"
|
H A D | binutils.pot | 555 msgid "Processed def file" 714 msgid "Processed definitions"
|