Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2233 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN in useSinCos() local
2241 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS) in useSinCos()
H A DDAGCombiner.cpp4276 unsigned OtherOpcode = 0; in useDivRem() local
4278 OtherOpcode = isSigned ? ISD::SREM : ISD::UREM; in useDivRem()
4282 OtherOpcode = isSigned ? ISD::SDIV : ISD::UDIV; in useDivRem()
4283 if (TLI.isOperationLegalOrCustom(OtherOpcode, VT)) in useDivRem()
4298 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem()
4302 if (UserOpc == OtherOpcode) { in useDivRem()