Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Target/SystemZ/ !
H A DSystemZInstrInfo.h297 std::optional<unsigned> getInverseOpcode(unsigned Opcode) const override;
H A DSystemZInstrInfo.cpp1133 auto InverseOpcode = getInverseOpcode(Opc); in isAssociativeAndCommutative()
1161 SystemZInstrInfo::getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function in SystemZInstrInfo
/src/contrib/llvm-project/llvm/lib/Target/RISCV/ !
H A DRISCVInstrInfo.h280 std::optional<unsigned> getInverseOpcode(unsigned Opcode) const override;
H A DRISCVInstrInfo.cpp1677 if (auto InvOpcode = getInverseOpcode(Opcode)) in isVectorAssociativeAndCommutative()
1903 auto InverseOpcode = getInverseOpcode(Opc); in isAssociativeAndCommutative()
1952 RISCVInstrInfo::getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function in RISCVInstrInfo
/src/contrib/llvm-project/llvm/lib/CodeGen/ !
H A DTargetInstrInfo.cpp854 return Opcode1 == Opcode2 || getInverseOpcode(Opcode1) == Opcode2; in areOpcodesEqualOrInverse()
975 unsigned InverseOpcode = *getInverseOpcode(Root.getOpcode()); in getReassociationOpcodes()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/ !
H A DTargetInstrInfo.h1261 virtual std::optional<unsigned> getInverseOpcode(unsigned Opcode) const { in getInverseOpcode() function