Home
last modified time | relevance | path

Searched refs:OtherOpcode (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp48 for (const unsigned OtherOpcode : Opcodes) { in computeAliasingInstructions() local
49 if (OtherOpcode == Instr->Description.getOpcode()) in computeAliasingInstructions()
51 const Instruction &OtherInstr = State.getIC().getInstr(OtherOpcode); in computeAliasingInstructions()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2236 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN in useSinCos() local
2244 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS) in useSinCos()
H A DDAGCombiner.cpp4211 unsigned OtherOpcode = 0; in useDivRem() local
4213 OtherOpcode = isSigned ? ISD::SREM : ISD::UREM; in useDivRem()
4217 OtherOpcode = isSigned ? ISD::SDIV : ISD::UDIV; in useDivRem()
4218 if (TLI.isOperationLegalOrCustom(OtherOpcode, VT)) in useDivRem()
4233 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem()
4237 if (UserOpc == OtherOpcode) { in useDivRem()