Home
last modified time | relevance | path

Searched refs:getInverseOpcode (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.h297 std::optional<unsigned> getInverseOpcode(unsigned Opcode) const override;
H A DSystemZInstrInfo.cpp1164 auto InverseOpcode = getInverseOpcode(Opc); in isAssociativeAndCommutative()
1192 SystemZInstrInfo::getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function in SystemZInstrInfo
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h289 std::optional<unsigned> getInverseOpcode(unsigned Opcode) const override;
H A DRISCVInstrInfo.cpp2081 if (auto InvOpcode = getInverseOpcode(Opcode)) in isVectorAssociativeAndCommutative()
2307 auto InverseOpcode = getInverseOpcode(Opc); in isAssociativeAndCommutative()
2356 RISCVInstrInfo::getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function in RISCVInstrInfo
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp931 return Opcode1 == Opcode2 || getInverseOpcode(Opcode1) == Opcode2; in areOpcodesEqualOrInverse()
1207 unsigned InverseOpcode = *getInverseOpcode(Root.getOpcode()); in getReassociationOpcodes()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h1327 virtual std::optional<unsigned> getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function