Home
last modified time | relevance | path

Searched refs:CondOpcode (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp2090 unsigned CondOpcode = Cond.getOpcode(); in LowerSELECT() local
2091 if (CondOpcode == M68kISD::SETCC || CondOpcode == M68kISD::SETCC_CARRY) { in LowerSELECT()
2103 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO || in LowerSELECT()
2104 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO || in LowerSELECT()
2105 CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) { in LowerSELECT()
2111 switch (CondOpcode) { in LowerSELECT()
2139 if (CondOpcode == ISD::UMULO) in LowerSELECT()
2146 if (CondOpcode == ISD::UMULO) in LowerSELECT()
2275 unsigned CondOpcode = Cond.getOpcode(); in LowerBRCOND() local
2276 if (CondOpcode == M68kISD::SETCC || CondOpcode == M68kISD::SETCC_CARRY) { in LowerBRCOND()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp3502 int CondOpcode = Hexagon::getPredOpcode(Opc, inPredSense); in getCondOpcode() local
3503 if (CondOpcode >= 0) // Valid Conditional opcode/instruction in getCondOpcode()
3504 return CondOpcode; in getCondOpcode()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp8626 BinaryOperatorKind CondOpcode; in DiagnoseConditionalPrecedence() local
8629 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS)) in DiagnoseConditionalPrecedence()
8637 unsigned DiagID = BinaryOperator::isBitwiseOp(CondOpcode) in DiagnoseConditionalPrecedence()
8643 << BinaryOperator::getOpcodeStr(CondOpcode); in DiagnoseConditionalPrecedence()
8648 << BinaryOperator::getOpcodeStr(CondOpcode), in DiagnoseConditionalPrecedence()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23802 unsigned CondOpcode = Cond.getOpcode(); in LowerSELECT() local
23803 if (CondOpcode == X86ISD::SETCC || in LowerSELECT()
23804 CondOpcode == X86ISD::SETCC_CARRY) { in LowerSELECT()
23818 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO || in LowerSELECT()
23819 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO || in LowerSELECT()
23820 CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) { in LowerSELECT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp15141 unsigned CondOpcode = SubsNode->getOpcode(); in performCONDCombine() local
15143 if (CondOpcode != AArch64ISD::SUBS) in performCONDCombine()
15202 SDValue NewValue = DAG.getNode(CondOpcode, SDLoc(SubsNode), VTs, Ops); in performCONDCombine()