Home
last modified time | relevance | path

Searched refs:Cond1 (Results 1 – 11 of 11) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DidenticalGenericConditionalsWithInferRelated.symbols8 type Cond1 = X extends [infer A] ? A : never;
9 >Cond1 : Symbol(Cond1, Decl(identicalGenericConditionalsWithInferRelated.ts, 0, 23))
20 let x: Cond1 = null as any;
22 >Cond1 : Symbol(Cond1, Decl(identicalGenericConditionalsWithInferRelated.ts, 0, 23))
DidenticalGenericConditionalsWithInferRelated.types6 type Cond1 = X extends [infer A] ? A : never;
7 >Cond1 : X extends [infer A] ? A : never
12 let x: Cond1 = null as any;
DidenticalGenericConditionalsWithInferRelated.js3 type Cond1 = X extends [infer A] ? A : never;
6 let x: Cond1 = null as any;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DGuardWidening.cpp187 bool widenCondCommon(Value *Cond0, Value *Cond1, Instruction *InsertPt,
249 bool isWideningCondProfitable(Value *Cond0, Value *Cond1, bool InvertCond) { in isWideningCondProfitable() argument
251 return widenCondCommon(Cond0, Cond1, /*InsertPt=*/nullptr, ResultUnused, in isWideningCondProfitable()
498 bool GuardWideningImpl::widenCondCommon(Value *Cond0, Value *Cond1, in widenCondCommon() argument
509 match(Cond1, m_ICmp(Pred1, m_Specific(LHS), m_ConstantInt(RHS1)))) { in widenCondCommon()
547 parseRangeChecks(Cond0, Checks) && parseRangeChecks(Cond1, Checks) && in widenCondCommon()
570 makeAvailableAt(Cond1, InsertPt); in widenCondCommon()
572 Cond1 = BinaryOperator::CreateNot(Cond1, "inverted", InsertPt); in widenCondCommon()
573 Result = BinaryOperator::CreateAnd(Cond0, Cond1, "wide.chk", InsertPt); in widenCondCommon()
/third_party/typescript/tests/cases/compiler/
DidenticalGenericConditionalsWithInferRelated.ts2 type Cond1 = X extends [infer A] ? A : never;
5 let x: Cond1 = null as any;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp109 auto Cond1 = createCond(BBBuilder, Arg, Cmp, Val); in createOrCond() local
110 return BBBuilder.CreateOr(Cond1, Cond2); in createOrCond()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DIfConversion.cpp1800 SmallVector<MachineOperand, 4> *Cond1 = &BBI.BrCond; in IfConvertDiamondCommon() local
1814 std::swap(Cond1, Cond2); in IfConvertDiamondCommon()
1980 PredicateBlock(*BBI1, MBB1.end(), *Cond1, &RedefsByFalse); in IfConvertDiamondCommon()
DModuloSchedule.cpp327 SmallVector<MachineOperand, 4> Cond1; in generateEpilog() local
328 TII->insertBranch(*LastEpilogBB, LoopExitBB, nullptr, Cond1, DebugLoc()); in generateEpilog()
DCodeGenPrepare.cpp7362 Value *Cond1, *Cond2; in splitBranchCondition() local
7363 if (match(LogicOp, m_And(m_OneUse(m_Value(Cond1)), in splitBranchCondition()
7366 else if (match(LogicOp, m_Or(m_OneUse(m_Value(Cond1)), in splitBranchCondition()
7372 if (!match(Cond1, m_CombineOr(m_Cmp(), m_BinOp())) || in splitBranchCondition()
7385 Br1->setCondition(Cond1); in splitBranchCondition()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp4012 SDValue Cond1 = N->getOperand(0); in WidenVecRes_SELECT() local
4013 EVT CondVT = Cond1.getValueType(); in WidenVecRes_SELECT()
4022 Cond1 = GetWidenedVector(Cond1); in WidenVecRes_SELECT()
4035 if (Cond1.getValueType() != CondWidenVT) in WidenVecRes_SELECT()
4036 Cond1 = ModifyToType(Cond1, CondWidenVT); in WidenVecRes_SELECT()
4043 WidenVT, Cond1, InOp1, InOp2); in WidenVecRes_SELECT()
DDAGCombiner.cpp8560 SDValue Cond1 = N0->getOperand(1); in visitSELECT() local
8562 DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond1, N1, N2, Flags); in visitSELECT()
8573 SDValue Cond1 = N0->getOperand(1); in visitSELECT() local
8575 Cond1, N1, N2, Flags); in visitSELECT()
8632 SDValue Cond0 = N0.getOperand(0), Cond1 = N0.getOperand(1); in visitSELECT() local
8640 if (SDValue FMinMax = combineMinNumMaxNum(DL, VT, Cond0, Cond1, N1, N2, in visitSELECT()
8653 auto *NotC = dyn_cast<ConstantSDNode>(Cond1); in visitSELECT()
8679 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, VT, Cond0, Cond1, N1, in visitSELECT()