Searched refs:Combined (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/Disassembler/
H A DXCoreDisassembler.cpp241 unsigned Combined = fieldFromInstruction(Insn, 6, 5); local
242 if (Combined < 27)
245 if (Combined == 31)
247 Combined += 5;
249 Combined -= 27;
250 unsigned Op1High = Combined % 3;
251 unsigned Op2High = Combined / 3;
260 unsigned Combined = fieldFromInstruction(Insn, 6, 5); local
261 if (Combined >= 27)
264 unsigned Op1High = Combined
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp819 NormalForm::value_type Combined;
820 Combined.reserve(LDisjunction.size() + RDisjunction.size());
822 std::back_inserter(Combined));
824 std::back_inserter(Combined));
825 Res.emplace_back(Combined);
848 NormalForm::value_type Combined;
849 Combined.reserve(LConjunction.size() + RConjunction.size());
851 std::back_inserter(Combined));
853 std::back_inserter(Combined));
854 Res.emplace_back(Combined);
[all...]
H A DSemaExprMember.cpp1810 Qualifiers Combined = BaseQuals + MemberQuals; local
1811 if (Combined != MemberQuals)
1812 MemberType = Context.getQualifiedType(MemberType, Combined);
H A DSemaExpr.cpp5456 Qualifiers Combined = BaseQuals + MemberQuals; local
5457 if (Combined != MemberQuals)
5458 ResultType = Context.getQualifiedType(ResultType, Combined);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp187 HashTable Combined(NextPowerOf2(2 * Weights.size()));
189 combineWeight(Combined[W.TargetNode.Index], W);
192 if (Weights.size() == Combined.size())
197 Weights.reserve(Combined.size());
198 for (const auto &I : Combined)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2369 Constant *Combined = CE->getOperand(CE->getNumOperands()-1); local
2372 Type *IdxTy = Combined->getType();
2382 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, CommonTy);
2383 Combined = ConstantExpr::get(Instruction::Add, C1, C2);
2385 Combined =
2386 ConstantExpr::get(Instruction::Add, Idx0, Combined);
2390 NewIndices.push_back(Combined);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1069 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N0, N1))
1070 return Combined;
1071 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N1, N0))
1072 return Combined;
2374 if (SDValue Combined = visitADDLikeCommutative(N0, N1, N))
2375 return Combined;
2377 if (SDValue Combined = visitADDLikeCommutative(N1, N0, N))
2378 return Combined;
2389 if (SDValue Combined = visitADDLike(N))
2390 return Combined;
9446 SDValue Combined = SimplifySetCC( local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4251 DINode::DIFlags Combined = DINode::FlagZero;
4256 Combined |= Val;
4259 Result.assign(Combined);
4291 DISubprogram::DISPFlags Combined = DISubprogram::SPFlagZero;
4296 Combined |= Val;
4299 Result.assign(Combined);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1052 SDValue Combined = local
1054 return Combined;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp5334 if (SDValue Combined = performExtractVectorEltCombine(Op.getNode(), DCI))
5335 return Combined;

Completed in 493 milliseconds