| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCPreEmitPeephole.cpp | 282 GOTDefUsePair &Pair = CandPairs[Idx]; in addLinkerOpt() local 285 if (!BBI->readsRegister(Pair.DefReg, TRI) && in addLinkerOpt() 286 !BBI->modifiesRegister(Pair.DefReg, TRI)) in addLinkerOpt() 295 if (UseOp && UseOp->isReg() && UseOp->getReg() == Pair.DefReg && in addLinkerOpt() 297 Pair.UseInst = BBI; in addLinkerOpt() 298 Pair.UseReg = BBI->getOperand(0).getReg(); in addLinkerOpt() 299 ValidPairs.push_back(Pair); in addLinkerOpt() 306 for (auto Pair = ValidPairs.begin(); Pair != ValidPairs.end(); Pair++) { in addLinkerOpt() local 308 assert(Pair->UseInst.isValid() && Pair->StillValid && in addLinkerOpt() 313 MachineBasicBlock::iterator BBI = Pair->DefInst; in addLinkerOpt() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| D | DependenceAnalysis.cpp | 821 for (Subscript *Pair : Pairs) { in unifySubscriptType() 822 const SCEV *Src = Pair->Src; in unifySubscriptType() 823 const SCEV *Dst = Pair->Dst; in unifySubscriptType() 846 for (Subscript *Pair : Pairs) { in unifySubscriptType() 847 const SCEV *Src = Pair->Src; in unifySubscriptType() 848 const SCEV *Dst = Pair->Dst; in unifySubscriptType() 859 Pair->Src = SE->getSignExtendExpr(Src, widestType); in unifySubscriptType() 862 Pair->Dst = SE->getSignExtendExpr(Dst, widestType); in unifySubscriptType() 871 void DependenceInfo::removeMatchingExtensions(Subscript *Pair) { in removeMatchingExtensions() argument 872 const SCEV *Src = Pair->Src; in removeMatchingExtensions() [all …]
|
| D | ReplayInlineAdvisor.cpp | 44 auto Pair = Line.split(" at callsite "); in ReplayInlineAdvisor() local 46 auto Callee = Pair.first.split(" inlined into").first.rsplit(": ").second; in ReplayInlineAdvisor() 48 auto CallSite = Pair.second.split(";").first; in ReplayInlineAdvisor()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | LLVMContextImpl.cpp | 51 for (auto &Pair : ValueMetadata) in ~LLVMContextImpl() local 52 Pair.first->dump(); in ~LLVMContextImpl() 66 for (auto &Pair : ValuesAsMetadata) in ~LLVMContextImpl() local 67 Pair.second->dropUsers(); in ~LLVMContextImpl() 68 for (auto &Pair : MetadataAsValues) in ~LLVMContextImpl() local 69 Pair.second->dropUse(); in ~LLVMContextImpl() 113 for (auto &Pair : MetadataAsValues) in ~LLVMContextImpl() local 114 MDVs.push_back(Pair.second); in ~LLVMContextImpl() 121 for (auto &Pair : ValuesAsMetadata) in ~LLVMContextImpl() local 122 delete Pair.second; in ~LLVMContextImpl()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| D | BlotMapVector.h | 56 std::pair<typename MapTy::iterator, bool> Pair = variable 58 if (Pair.second) { 60 Pair.first->second = Num; 64 return Vector[Pair.first->second].second; 68 std::pair<typename MapTy::iterator, bool> Pair = in insert() local 70 if (Pair.second) { in insert() 72 Pair.first->second = Num; in insert() 76 return std::make_pair(Vector.begin() + Pair.first->second, false); in insert()
|
| D | ProvenanceAnalysis.cpp | 171 std::pair<CachedResultsTy::iterator, bool> Pair = in related() local 173 if (!Pair.second) in related() 174 return Pair.first->second; in related()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| D | CloneChecker.cpp | 166 for (VariablePattern::SuspiciousClonePair &Pair : Pairs) { in reportSuspiciousClones() 175 Pair.FirstCloneInfo.Variable->getNameAsString() + "' here?", in reportSuspiciousClones() 176 PathDiagnosticLocation::createBegin(Pair.FirstCloneInfo.Mention, SM, in reportSuspiciousClones() 178 R->addRange(Pair.FirstCloneInfo.Mention->getSourceRange()); in reportSuspiciousClones() 181 Pair.SecondCloneInfo.Variable->getNameAsString() + "' here", in reportSuspiciousClones() 182 PathDiagnosticLocation::createBegin(Pair.SecondCloneInfo.Mention, in reportSuspiciousClones() 184 Pair.SecondCloneInfo.Mention->getSourceRange()); in reportSuspiciousClones()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | RegisterPressure.h | 305 LaneBitmask insert(RegisterMaskPair Pair) { in insert() argument 306 unsigned SparseIndex = getSparseIndexFromReg(Pair.RegUnit); in insert() 307 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() 310 InsertRes.first->LaneMask |= Pair.LaneMask; in insert() 318 LaneBitmask erase(RegisterMaskPair Pair) { in erase() argument 319 unsigned SparseIndex = getSparseIndexFromReg(Pair.RegUnit); in erase() 324 I->LaneMask &= ~Pair.LaneMask; in erase() 543 void discoverLiveOut(RegisterMaskPair Pair); 545 void discoverLiveIn(RegisterMaskPair Pair); 561 void discoverLiveInOrOut(RegisterMaskPair Pair,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/ |
| D | LLLexer.cpp | 75 uint64_t Pair[2]) { in HexToIntPair() 76 Pair[0] = 0; in HexToIntPair() 80 Pair[0] *= 16; in HexToIntPair() 81 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair() 84 Pair[1] = 0; in HexToIntPair() 86 Pair[1] *= 16; in HexToIntPair() 87 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair() 96 uint64_t Pair[2]) { in FP80HexToIntPair() 97 Pair[1] = 0; in FP80HexToIntPair() 100 Pair[1] *= 16; in FP80HexToIntPair() [all …]
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | der | 37 >&0 der int3=010001 DER Encoded Key Pair, 512 bits 42 >&0 der int3=010001 DER Encoded Key Pair, 1024 bits 47 >&0 der int3=010001 DER Encoded Key Pair, 2048 bits 52 >&0 der int3=010001 DER Encoded Key Pair, 4096 bits 57 >&0 der int3=010001 DER Encoded Key Pair, 8192 bits 62 >&0 der int3=010001 DER Encoded Key Pair, 16k bits 67 >&0 der int3=010001 DER Encoded Key Pair, 32k bits
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| D | DenseMapInfo.h | 210 using Pair = std::pair<T, U>; 214 static inline Pair getEmptyKey() { 219 static inline Pair getTombstoneKey() { 224 static unsigned getHashValue(const Pair& PairVal) { 229 static bool isEqual(const Pair &LHS, const Pair &RHS) {
|
| D | MapVector.h | 99 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(Key, 0); variable 100 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); 118 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0); in insert() local 119 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() 131 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0); in insert() local 132 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| D | X86EVEX2VEXTablesEmitter.cpp | 68 for (auto Pair : Table) { in printTable() local 69 OS << " { X86::" << Pair.first->TheDef->getName() in printTable() 70 << ", X86::" << Pair.second->TheDef->getName() << " },\n"; in printTable() 83 for (auto Pair : Predicates) in printCheckPredicate() local 84 OS << " case X86::" << Pair.first << ": return " << Pair.second << ";\n"; in printCheckPredicate()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DWP/ |
| D | DWPStringPool.h | 44 auto Pair = Pool.insert(std::make_pair(Str, Offset)); in getOffset() local 45 if (Pair.second) { in getOffset() 51 return Pair.first->second; in getOffset()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | Dominators.h | 91 BasicBlockEdge(const std::pair<BasicBlock *, BasicBlock *> &Pair) in BasicBlockEdge() argument 92 : Start(Pair.first), End(Pair.second) {} in BasicBlockEdge() 94 BasicBlockEdge(const std::pair<const BasicBlock *, const BasicBlock *> &Pair) in BasicBlockEdge() argument 95 : Start(Pair.first), End(Pair.second) {} in BasicBlockEdge()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | RegisterPressure.cpp | 362 for (const RegisterMaskPair &Pair : P.LiveOutRegs) { in initLiveThru() local 363 Register RegUnit = Pair.RegUnit; in initLiveThru() 367 LaneBitmask::getNone(), Pair.LaneMask); in initLiveThru() 382 RegisterMaskPair Pair) { in addRegLanes() argument 383 Register RegUnit = Pair.RegUnit; in addRegLanes() 384 assert(Pair.LaneMask.any()); in addRegLanes() 389 RegUnits.push_back(Pair); in addRegLanes() 391 I->LaneMask |= Pair.LaneMask; in addRegLanes() 408 RegisterMaskPair Pair) { in removeRegLanes() argument 409 Register RegUnit = Pair.RegUnit; in removeRegLanes() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| D | RewriteStatepointsForGC.cpp | 913 for (auto Pair : States) { in findBasePointer() local 914 LLVM_DEBUG(dbgs() << " " << Pair.second << " for " << *Pair.first << "\n"); in findBasePointer() 926 for (auto Pair : States) { in findBasePointer() local 927 Value *BDV = Pair.first; in findBasePointer() 975 for (auto Pair : States) { in findBasePointer() local 976 Value *BDV = Pair.first; in findBasePointer() 981 !areBothVectorOrScalar(BDV, Pair.second.getBaseValue())) && in findBasePointer() 1005 for (auto Pair : States) { in findBasePointer() local 1006 LLVM_DEBUG(dbgs() << " " << Pair.second << " for " << *Pair.first << "\n"); in findBasePointer() 1012 for (auto Pair : States) { in findBasePointer() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| D | WebAssemblyInstPrinter.cpp | 224 const auto &Pair = ControlFlowStack.rbegin()[Depth]; in printInst() local 225 if (Pair.second) in printInst() 228 Label += "down to catch" + utostr(Pair.first); in printInst() 259 const auto &Pair = ControlFlowStack.rbegin()[Depth]; in printInst() local 261 (Pair.second ? "up" : "down") + " to label" + in printInst() 262 utostr(Pair.first)); in printInst()
|
| D | WebAssemblyTargetStreamer.cpp | 133 for (auto Pair : Grouped) { in emitLocal() local 134 Streamer.emitULEB128IntValue(Pair.second); in emitLocal() 135 emitValueType(Pair.first); in emitLocal()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyAddMissingPrototypes.cpp | 132 for (auto &Pair : Replacements) { in runOnModule() local 133 Function *OldF = Pair.first; in runOnModule() 134 Function *NewF = Pair.second; in runOnModule()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| D | DebugStringTableSubsection.cpp | 72 for (auto &Pair : StringToId) { in commit() local 73 StringRef S = Pair.getKey(); in commit() 74 uint32_t Offset = Begin + Pair.getValue(); in commit()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-tapi-diff/ |
| D | DiffEngine.cpp | 156 for (const auto &Pair : PairVec) in getSingleAttrDiff() local 159 StringRef(Pair.second), Pair.first, Diff, Order); in getSingleAttrDiff() 256 for (const auto &Pair : CollectedPairs) { in findAndAddDiff() local 257 auto FoundPair = llvm::find(LookupPairs, Pair); in findAndAddDiff() 261 StringRef(Pair.second), Pair.first, Result, Order); in findAndAddDiff() 394 auto Pair = llvm::find_if(IFRHS->documents(), [&](const auto &DocRHS) { in findDifferences() local 398 if (Pair != IFRHS->documents().end()) { in findDifferences() 401 findDifferences(DocLHS.get(), Pair->get())); in findDifferences()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| D | MachOObjcopy.cpp | 286 std::pair<StringRef, StringRef> Pair = SecName.split(','); in addSection() local 287 StringRef TargetSegName = Pair.first; in addSection() 288 Section Sec(TargetSegName, Pair.second); in addSection() 324 std::pair<StringRef, StringRef> Pair = Name.split(','); in isValidMachOCannonicalName() local 325 if (Pair.first.size() > 16) in isValidMachOCannonicalName() 328 Pair.first.str().c_str()); in isValidMachOCannonicalName() 329 if (Pair.second.size() > 16) in isValidMachOCannonicalName() 332 Pair.second.str().c_str()); in isValidMachOCannonicalName()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| D | PDBStringTableBuilder.cpp | 180 for (auto &Pair : Strings) { in writeHashTable() local 181 StringRef S = Pair.getKey(); in writeHashTable() 182 uint32_t Offset = Pair.getValue(); in writeHashTable()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | CFGDiff.h | 78 for (auto Pair : M) { in printMap() local 81 for (auto Child : Pair.second.DI[IsInsert]) { in printMap() 83 Pair.first->printAsOperand(OS, false); in printMap()
|