Searched refs:Pair (Results 76 - 100 of 127) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1666 Value *Pair = UndefValue::get(CI->getType()); local
1668 Pair = B.CreateInsertValue(Pair, LoadedValue, {0});
1669 Pair = B.CreateInsertValue(Pair, TypeTestCall, {1});
1670 CI->replaceAllUsesWith(Pair);
H A DSampleProfile.cpp1080 for (const auto &Pair : localNotInlinedCallSites) {
1081 Instruction *I = Pair.getFirst();
1093 const FunctionSamples *FS = Pair.getSecond();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp264 std::pair<RegUsesTy::iterator, bool> Pair = local
266 RegSortData &RSD = Pair.first->second;
267 if (Pair.second)
288 for (auto &Pair : RegUsesMap) {
289 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
4112 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy())); local
4113 if (Pair.second)
4115 Pair.first->second.insert(std::make_pair(Imm, Use));
5357 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair = local
5359 if (!Pair
[all...]
H A DNewGVN.cpp3195 [&](const std::pair<const MemoryAccess *, CongruenceClass *> Pair) {
3196 bool Result = ReachableBlocks.count(Pair.first->getBlock());
3197 if (!Result || MSSA->isLiveOnEntryDef(Pair.first) ||
3198 MemoryToDFSNum(Pair.first) == 0)
3200 if (auto *MemDef = dyn_cast<MemoryDef>(Pair.first))
3205 if (auto *MemPHI = dyn_cast<MemoryPhi>(Pair.first)) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp376 std::pair<StringRef, StringRef> Pair = Saver.save(TrimmedLine).split(' '); local
377 StringRef NewName = Pair.second.trim();
382 SymbolsToRename.insert({Pair.first, NewName});
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp990 // Pair {OpIdx1, MaxOpIdx2} was found to be best. Never revisit it.
2327 for (const auto &Pair : DeletedInstructions) {
2330 if (Pair.getSecond()) {
2331 Value *Undef = UndefValue::get(Pair.getFirst()->getType());
2332 Pair.getFirst()->replaceAllUsesWith(Undef);
2334 Pair.getFirst()->dropAllReferences();
2336 for (const auto &Pair : DeletedInstructions) {
2337 assert(Pair.getFirst()->use_empty() &&
2339 Pair.getFirst()->eraseFromParent();
6714 for (auto &Pair
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp1296 for (const IdentifierLocPair &Pair : ProtocolId) {
1297 ObjCProtocolDecl *PDecl = LookupProtocol(Pair.first, Pair.second);
1301 DeclarationNameInfo(Pair.first, Pair.second), LookupObjCProtocolName,
1305 << Pair.first);
1309 Diag(Pair.second, diag::err_undeclared_protocol) << Pair.first;
1319 (void)DiagnoseUseOfDecl(PDecl, Pair.second);
1329 Diag(Pair
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp479 auto Pair = std::make_pair((unsigned)AlignType, BitWidth); local
481 return std::make_pair(E.AlignType, E.TypeBitWidth) < Pair;
H A DVerifier.cpp1879 for (const auto &Pair : MDs) {
1880 if (Pair.first == LLVMContext::MD_prof) {
1881 MDNode *MD = Pair.second;
2123 for (const auto &Pair : SiblingFuncletInfo) {
2124 Instruction *PredPad = Pair.first;
2128 Instruction *Terminator = Pair.second;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp221 /// \returns Pair of values: previous value from storage (value type) and
368 llvm::AtomicCmpXchgInst *Pair = CGF.Builder.CreateAtomicCmpXchg( local
371 Pair->setVolatile(E->isVolatile());
372 Pair->setWeak(IsWeak);
376 llvm::Value *Old = CGF.Builder.CreateExtractValue(Pair, 0);
377 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1);
H A DCGStmtOpenMP.cpp3256 for (const auto &Pair : LastprivateDstsOrigs) {
3257 const auto *OrigVD = cast<VarDecl>(Pair.second->getDecl());
3261 Pair.second->getType(), VK_LValue,
3262 Pair.second->getExprLoc());
3263 Scope.addPrivate(Pair.first, [&CGF, &DRE]() {
3267 for (const auto &Pair : PrivatePtrs) {
3268 Address Replacement(CGF.Builder.CreateLoad(Pair.second),
3269 CGF.getContext().getDeclAlign(Pair.first));
3270 Scope.addPrivate(Pair.first, [Replacement]() { return Replacement; });
3480 for (const auto &Pair
[all...]
H A DCodeGenFunction.h885 for (auto &Pair : Src) {
886 if (!Pair.second.isValid()) {
887 Dest.erase(Pair.first);
891 auto I = Dest.find(Pair.first);
893 I->second = Pair.second;
895 Dest.insert(Pair);
H A DCGOpenMPRuntime.cpp1329 for (const auto &Pair : DeferredVariantFunction) {
1330 StringRef MangledName = CGM.getMangledName(Pair.second.second);
1333 (void)tryEmitDeclareVariant(Pair.second.first, Pair.second.second, Addr,
4381 for (const auto &Pair : Privates) {
4382 const VarDecl *VD = Pair.second.Original;
4755 for (const PrivateDataTy &Pair : Privates) {
4756 const VarDecl *VD = Pair.second.PrivateCopy;
4761 if (const VarDecl *Elem = Pair.second.PrivateElemInit) {
4762 const VarDecl *OriginalVD = Pair
[all...]
H A DCodeGenFunction.cpp432 for (auto &Pair : EscapedLocals)
433 EscapeArgs[Pair.second] = Pair.first;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp1476 for (const auto &Pair : SubtargetFeatures)
1477 LLVM_DEBUG(Pair.second.dump());
3350 for (auto Pair : zip(A, B)) {
3351 if (std::get<0>(Pair)->getName() < std::get<1>(Pair)->getName())
3353 if (std::get<0>(Pair)->getName() > std::get<1>(Pair)->getName())
H A DGlobalISelEmitter.cpp3117 for (const auto &Pair : InsnVariableIDs) {
3120 if (Pair.first == Matchers.front().get())
3123 InsnIDs.push_back(Pair.second);
5278 for (auto Pair : zip(A, B)) {
5279 if (std::get<0>(Pair)->getName() < std::get<1>(Pair)->getName())
5281 if (std::get<0>(Pair)->getName() > std::get<1>(Pair)->getName())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp253 for (auto &Pair : MappedTypes) {
254 assert(!(Pair.first != Ty && Pair.second == Ty) &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1397 auto LoVec = [&DAG,ResTy,dl] (SDValue Pair) {
1398 return DAG.getTargetExtractSubreg(Hexagon::vsub_lo, dl, ResTy, Pair);
1400 auto HiVec = [&DAG,ResTy,dl] (SDValue Pair) {
1401 return DAG.getTargetExtractSubreg(Hexagon::vsub_hi, dl, ResTy, Pair);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp620 auto Pair = RelevantLoops.insert(std::make_pair(S, nullptr)); local
621 if (!Pair.second)
622 return Pair.first->second;
629 return Pair.first->second = SE.LI.getLoopFor(I->getParent());
H A DScalarEvolution.cpp2312 auto Pair = M.insert({Key, NewScale}); local
2313 if (Pair.second) {
2314 NewOps.push_back(Pair.first->first);
2316 Pair.first->second += NewScale;
2324 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair = local
2326 if (Pair.second) {
2327 NewOps.push_back(Pair.first->first);
2329 Pair.first->second += Scale;
3915 std::pair<ValueExprMapType::iterator, bool> Pair =
3917 if (Pair
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl516 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush
533 // Pair of mmi; splits on Itanium 1 and prevents pipeline flush
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1275 std::pair<StringRef, StringRef> Pair = Name.rsplit(".llvm."); local
1276 return Pair.first;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp1215 for (value_type &Pair : *this) {
1216 ExpArgTokens &CurrExpArgTokens = Pair.second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp747 std::pair<unsigned, bool> Pair = getRegForGEPIndex(Idx); local
748 unsigned IdxN = Pair.first;
749 bool IdxNIsKill = Pair.second;
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dwpa_auth.c639 sm->Pair = TRUE;
650 sm->Pair = TRUE;
1868 sm->Pair = TRUE;
3165 /* Send EAPOL(1, 1, 1, Pair, P, RSC, ANonce, MIC(PTK), RSNIE, [MDIE],
3345 if (sm->Pair) {
3560 /* Send EAPOL(1, 1, 1, !Pair, G, RSC, GNonce, MIC(PTK), GTK[GN]) */
3606 (!sm->Pair ? WPA_KEY_INFO_INSTALL : 0),
4990 /* Send EAPOL(1, 1, 1, Pair, P, RSC, ANonce, MIC(PTK), RSNIE, [MDIE],
5166 /* Send EAPOL(1, 1, 1, !Pair, G, RSC, GNonce, MIC(PTK), GTK[GN]) */
5214 (!sm->Pair
[all...]

Completed in 490 milliseconds

123456