| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| LanaiISelLowering.cpp | 1260 LoBitsForHi = DAG.getSelect(dl, MVT::i32, SetCC, Zero, LoBitsForHi); 1272 DAG.getSelect(dl, MVT::i32, SetCC, HiForBigShift, HiForNormalShift); 1277 SDValue Lo = DAG.getSelect( 1310 Hi = DAG.getSelect(dl, MVT::i32, SetCC, Zero, Hi); 1313 Lo = DAG.getSelect(dl, MVT::i32, SetCC, Hi, Lo); 1317 Lo = DAG.getSelect(dl, MVT::i32, ShiftIsZero, Lo,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| ConstantFolder.h | 255 return ConstantExpr::getSelect(C, True, False);
|
| Constants.h | 1169 static Constant *getSelect(Constant *C, Constant *V1, Constant *V2,
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| LegalizeIntegerTypes.cpp | 1039 return DAG.getSelect(SDLoc(N), 2463 Lo = DAG.getSelect(dl, NVT, isShort, LoS, LoL); 2464 Hi = DAG.getSelect(dl, NVT, isZero, InH, 2465 DAG.getSelect(dl, NVT, isShort, HiS, HiL)); 2480 Lo = DAG.getSelect(dl, NVT, isZero, InL, 2481 DAG.getSelect(dl, NVT, isShort, LoS, LoL)); 2482 Hi = DAG.getSelect(dl, NVT, isShort, HiS, HiL); 2496 Lo = DAG.getSelect(dl, NVT, isZero, InL, 2497 DAG.getSelect(dl, NVT, isShort, LoS, LoL)); 2498 Hi = DAG.getSelect(dl, NVT, isShort, HiS, HiL) [all...] |
| LegalizeVectorOps.cpp | 945 Mask = DAG.getSelect(DL, BitTy, Mask, 1498 ScalarResult = DAG.getSelect(dl, EltVT, ScalarResult, 1533 Ops[i] = DAG.getSelect(dl, EltVT, Ops[i],
|
| TargetLowering.cpp | 5401 return DAG.getSelect(dl, VT, IsOne, N0, Q); 6792 SDValue FltOfs = DAG.getSelect(dl, SrcVT, Sel, 6795 SDValue IntOfs = DAG.getSelect(dl, DstVT, Sel, 6823 Result = DAG.getSelect(dl, DstVT, Sel, True, False); 7950 return DAG.getSelect(DL, VT, Cond, Op0, Op1); 8015 return DAG.getSelect(dl, VT, Overflow, AllOnes, SumDiff); 8026 return DAG.getSelect(dl, VT, Overflow, Zero, SumDiff); 8036 Result = DAG.getSelect(dl, VT, SumNeg, SatMax, SatMin); 8037 return DAG.getSelect(dl, VT, Overflow, Result, SumDiff); 8112 Result = DAG.getSelect(dl, VT, ProdNeg, SatMax, SatMin) [all...] |
| LegalizeDAG.cpp | 1572 return DAG.getSelect(DL, FloatVT, Cond, NegValue, AbsValue); 2410 SDValue InCvt = DAG.getSelect(dl, SrcVT, SignBitTest, Or, Op0); 2430 return DAG.getSelect(dl, DestVT, SignBitTest, Slow, Fast); 2456 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(), 3649 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4)); 4561 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
|
| DAGCombiner.cpp | 2163 SDValue SelectOp = DAG.getSelect(DL, VT, Sel.getOperand(0), NewCT, NewCF); 4137 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ), 4233 Sra = DAG.getSelect(DL, VT, IsOneOrAllOnes, N0, Sra); 4242 SDValue Res = DAG.getSelect(DL, VT, IsNeg, Sub, Sra); 4278 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ), 4374 return DAG.getSelect(DL, VT, DAG.getSetCC(DL, CCVT, N0, N1, ISD::SETEQ), 9502 SDValue SelectOp = DAG.getSelect(DL, VT, F, N2, N1); 9546 return DAG.getSelect(DL, VT, UAO.getValue(1), N1, UAO.getValue(0)); 9859 return DAG.getSelect(DL, VT, F, N2, N1); 9931 return DAG.getSelect(DL, N1.getValueType(), WideSetCC, N1, N2) [all...] |
| LegalizeVectorTypes.cpp | 502 return DAG.getSelect(SDLoc(N), 509 return DAG.getSelect(SDLoc(N), 4493 Scalars[i] = DAG.getSelect(dl, EltVT, Scalars[i], 5052 Scalars[i] = DAG.getSelect(dl, EltVT, Scalars[i],
|
| LegalizeFloatTypes.cpp | 712 return DAG.getSelect(SDLoc(N), 2781 return DAG.getSelect(SDLoc(N), Op1.getValueType(), N->getOperand(0), Op1,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| TargetFolder.h | 249 return Fold(ConstantExpr::getSelect(C, True, False));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| Evaluator.cpp | 414 InstResult = ConstantExpr::getSelect(getVal(SI->getOperand(0)),
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| InferAddressSpaces.cpp | 661 return ConstantExpr::getSelect(
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Constants.cpp | 1550 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy); 2408 Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2, 2751 return getSelect(Cmp, C1, C2);
|
| ConstantFold.cpp | 847 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2); 852 return ConstantExpr::getSelect(Cond, V1, FalseVal->getOperand(2));
|
| Core.cpp | 1814 return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUISelLowering.cpp | 2225 return DAG.getSelect(SL, MVT::f64, Cond, Src, Tmp2); 2443 SDValue E = DAG.getSelect(SL, MVT::i32, 2470 SDValue R = DAG.getSelect(SL, MVT::i32, 2473 DAG.getSelect(SL, MVT::i32, TCmp, VTrunc1, ZeroI32)); 2481 return DAG.getSelect(SL, MVT::f32, DAG.getSExtOrTrunc(S, SL, SetCCVT), RNeg, R);
|
| SIISelLowering.cpp | 8211 SDValue Lo = DAG.getSelect(DL, MVT::i32, Cond, Lo0, Lo1); 8216 SDValue Hi = DAG.getSelect(DL, MVT::i32, Cond, Hi0, Hi1); 9145 return DAG.getSelect(SDLoc(N), MVT::i32, RHS.getOperand(0),
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86ISelLowering.cpp | 9212 SDValue Select = DAG.getSelect(dl, MVT::i32, Cond, 9219 SDValue Select = DAG.getSelect(dl, ImmVT, Cond, 12175 DAG.getSelect(DL, BlendVT, DAG.getBuildVector(BlendVT, DL, VSELECTMask), 18577 return DAG.getSelect(dl, VT, Mask, LHS, RHS); 19922 SDValue SignSrc = DAG.getSelect(DL, MVT::v4i64, IsNeg, Sign, Src); 19950 SDValue Cvt = DAG.getSelect(DL, MVT::v4f32, IsNeg, Slow, SignCvt); 20552 SDValue Offset = DAG.getSelect(dl, Zero.getValueType(), SignSet, Four, Zero); 20690 SDValue FltOfs = DAG.getSelect(DL, TheVT, Cmp, ThreshVal, 20855 SDValue SelectedVal = DAG.getSelect(DL, WideVT, In, One, Zero); 23672 SDValue VSel = DAG.getSelect(DL, VecVT, VCmp, VOp1, VOp2) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonISelLoweringHVX.cpp | 1165 return DAG.getSelect(dl, ResTy, VecV, True, False); 1201 SDValue Sel = DAG.getSelect(dl, VecTy, VecQ, DAG.getBitcast(VecTy, Bytes),
|
| HexagonISelLowering.cpp | 1104 DAG.getSelect(dl, WideTy, PredOp, 2764 Rs[i] = DAG.getSelect(dl, MVT::i32, Ops[i/Rep], S, Z);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| SelectionDAG.h | 1068 SDValue getSelect(const SDLoc &DL, EVT VT, SDValue Cond, SDValue LHS,
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| InlineCost.cpp | 1957 // operands are constants, ConstantExpr::getSelect() can handle the cases 1960 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) {
|
| ConstantFolding.cpp | 1090 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| LowerTypeTests.cpp | 1330 Constant *Target = ConstantExpr::getSelect(
|