reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
3438 if (N->isLeaf()) { 3439 if (DefInit *DI = dyn_cast<DefInit>(N->getLeafValue())) { 3453 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) 3454 AnalyzeNode(N->getChild(i)); 3457 if (N->NodeHasProperty(SDNPMayStore, CDP)) mayStore = true; 3458 if (N->NodeHasProperty(SDNPMayLoad, CDP)) mayLoad = true; 3459 if (N->NodeHasProperty(SDNPSideEffect, CDP)) hasSideEffects = true; 3460 if (N->NodeHasProperty(SDNPVariadic, CDP)) isVariadic = true; 3461 if (N->NodeHasProperty(SDNPHasChain, CDP)) hasChain = true; 3463 if (const CodeGenIntrinsic *IntInfo = N->getIntrinsicInfo(CDP)) {