Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
HDCodeGenInstruction.cpp531 Record *InstOpRec, bool hasSubOps, in tryAliasOpMatch() argument
538 if (ADI && ADI->getDef() == InstOpRec) { in tryAliasOpMatch()
550 if (InstOpRec->isSubClassOf("RegisterOperand")) in tryAliasOpMatch()
551 InstOpRec = InstOpRec->getValueAsDef("RegClass"); in tryAliasOpMatch()
557 if (!InstOpRec->isSubClassOf("RegisterClass")) in tryAliasOpMatch()
559 if (!T.getRegisterClass(InstOpRec) in tryAliasOpMatch()
568 if (InstOpRec->isSubClassOf("OptionalDefOperand")) { in tryAliasOpMatch()
569 DagInit *DI = InstOpRec->getValueAsDag("MIOperandInfo"); in tryAliasOpMatch()
572 InstOpRec = cast<DefInit>(DI->getArg(0))->getDef(); in tryAliasOpMatch()
575 if (!InstOpRec->isSubClassOf("RegisterClass")) in tryAliasOpMatch()
[all …]
HDCodeGenInstruction.h387 Record *InstOpRec, bool hasSubOps, ArrayRef<SMLoc> Loc,