Searched refs:NewSetCC (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kISelLowering.cpp | 2158 if (SDValue NewSetCC = LowerToBTST(Op0, CC, DL, DAG)) { in LowerSETCC() local 2160 return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, NewSetCC); in LowerSETCC() 2161 return NewSetCC; in LowerSETCC() 2361 if (SDValue NewSetCC = LowerToBTST(Cond, ISD::SETNE, DL, DAG)) { in LowerSELECT() local 2362 CC = NewSetCC.getOperand(0); in LowerSELECT() 2363 Cond = NewSetCC.getOperand(1); in LowerSELECT() 2590 if (SDValue NewSetCC = LowerToBTST(Cond, ISD::SETNE, DL, DAG)) { in LowerBRCOND() local 2591 CC = NewSetCC.getOperand(0); in LowerBRCOND() 2592 Cond = NewSetCC.getOperand(1); in LowerBRCOND()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
H A D | LoongArchISelLowering.cpp | 3607 SDValue NewSetCC = in performSETCCCombine() local 3609 DAG.ReplaceAllUsesWith(N, NewSetCC.getNode()); in performSETCCCombine()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 4761 SDValue NewSetCC = DAG.getSetCC(dl, NewSetCCVT, N0.getOperand(0), in SimplifySetCC() local 4763 return DAG.getBoolExtOrTrunc(NewSetCC, dl, VT, N0.getValueType()); in SimplifySetCC()
|
H A D | DAGCombiner.cpp | 12655 SDValue NewSetCC = rebuildSetCC(Combined); in visitSETCC() local 12658 if (NewSetCC.getNode() == N) in visitSETCC() 12661 if (NewSetCC) in visitSETCC() 12662 return NewSetCC; in visitSETCC()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 55903 SDValue NewSetCC = getSETCC(NewCC, SetCC.getOperand(1), DL, DAG); in combineSubSetcc() local 55904 NewSetCC = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, NewSetCC); in combineSubSetcc() 55905 return DAG.getNode(X86ISD::ADD, DL, DAG.getVTList(VT, VT), NewSetCC, in combineSubSetcc()
|