Home
last modified time | relevance | path

Searched refs:InstOpRec (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstAlias.cpp29 const Record *InstOpRec, bool hasSubOps, in tryAliasOpMatch() argument
37 if (ADI && ADI->getDef() == InstOpRec) { in tryAliasOpMatch()
49 if (InstOpRec->isSubClassOf("RegisterOperand")) in tryAliasOpMatch()
50 InstOpRec = InstOpRec->getValueAsDef("RegClass"); in tryAliasOpMatch()
56 if (!InstOpRec->isSubClassOf("RegisterClass")) in tryAliasOpMatch()
58 if (!T.getRegisterClass(InstOpRec).hasSubClass( in tryAliasOpMatch()
67 if (InstOpRec->isSubClassOf("OptionalDefOperand")) { in tryAliasOpMatch()
68 const DagInit *DI = InstOpRec->getValueAsDag("MIOperandInfo"); in tryAliasOpMatch()
71 InstOpRec = cast<DefInit>(DI->getArg(0))->getDef(); in tryAliasOpMatch()
74 if (!InstOpRec->isSubClassOf("RegisterClass")) in tryAliasOpMatch()
[all …]
H A DCodeGenInstAlias.h99 const Record *InstOpRec, bool hasSubOps,