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

/freebsd-12-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-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp798 NormalForm::value_type Combined;
799 Combined.reserve(LDisjunction.size() + RDisjunction.size());
801 std::back_inserter(Combined));
803 std::back_inserter(Combined));
804 Res.emplace_back(Combined);
827 NormalForm::value_type Combined;
828 Combined.reserve(LConjunction.size() + RConjunction.size());
830 std::back_inserter(Combined));
832 std::back_inserter(Combined));
833 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.cpp4824 Qualifiers Combined = BaseQuals + MemberQuals; local
4825 if (Combined != MemberQuals)
4826 ResultType = Context.getQualifiedType(ResultType, Combined);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp181 HashTable Combined(NextPowerOf2(2 * Weights.size()));
183 combineWeight(Combined[W.TargetNode.Index], W);
186 if (Weights.size() == Combined.size())
191 Weights.reserve(Combined.size());
192 for (const auto &I : Combined)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp2288 Constant *Combined = CE->getOperand(CE->getNumOperands()-1); local
2291 Type *IdxTy = Combined->getType();
2301 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, CommonTy);
2302 Combined = ConstantExpr::get(Instruction::Add, C1, C2);
2304 Combined =
2305 ConstantExpr::get(Instruction::Add, Idx0, Combined);
2309 NewIndices.push_back(Combined);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp998 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N0, N1))
999 return Combined;
1000 if (SDValue Combined = reassociateOpsCommutative(Opc, DL, N1, N0))
1001 return Combined;
2298 if (SDValue Combined = visitADDLikeCommutative(N0, N1, N))
2299 return Combined;
2301 if (SDValue Combined = visitADDLikeCommutative(N1, N0, N))
2302 return Combined;
2313 if (SDValue Combined = visitADDLike(N))
2314 return Combined;
9040 SDValue Combined = SimplifySetCC( local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4150 DINode::DIFlags Combined = DINode::FlagZero;
4155 Combined |= Val;
4158 Result.assign(Combined);
4190 DISubprogram::DISPFlags Combined = DISubprogram::SPFlagZero;
4195 Combined |= Val;
4198 Result.assign(Combined);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1051 SDValue Combined = local
1053 return Combined;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp4898 if (SDValue Combined = performExtractVectorEltCombine(Op.getNode(), DCI))
4899 return Combined;

Completed in 453 milliseconds