Lines Matching refs:PropList
373 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties"); in ComplexPattern() local
374 for (unsigned i = 0, e = PropList.size(); i != e; ++i) in ComplexPattern()
375 if (PropList[i]->getName() == "SDNPHasChain") { in ComplexPattern()
377 } else if (PropList[i]->getName() == "SDNPOptInGlue") { in ComplexPattern()
379 } else if (PropList[i]->getName() == "SDNPMayStore") { in ComplexPattern()
381 } else if (PropList[i]->getName() == "SDNPMayLoad") { in ComplexPattern()
383 } else if (PropList[i]->getName() == "SDNPSideEffect") { in ComplexPattern()
385 } else if (PropList[i]->getName() == "SDNPMemOperand") { in ComplexPattern()
387 } else if (PropList[i]->getName() == "SDNPVariadic") { in ComplexPattern()
389 } else if (PropList[i]->getName() == "SDNPWantRoot") { in ComplexPattern()
391 } else if (PropList[i]->getName() == "SDNPWantParent") { in ComplexPattern()
394 errs() << "Unsupported SD Node property '" << PropList[i]->getName() in ComplexPattern()
532 ListInit *PropList = R->getValueAsListInit("Properties"); in CodeGenIntrinsic() local
533 for (unsigned i = 0, e = PropList->getSize(); i != e; ++i) { in CodeGenIntrinsic()
534 Record *Property = PropList->getElementAsRecord(i); in CodeGenIntrinsic()