reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
96 if (Action->isSubClassOf("CCPredicateAction")) { 99 if (Action->isSubClassOf("CCIfType")) { 100 ListInit *VTs = Action->getValueAsListInit("VTs"); 107 } else if (Action->isSubClassOf("CCIf")) { 108 O << Action->getValueAsString("Predicate"); 110 errs() << *Action; 111 PrintFatalError(Action->getLoc(), "Unknown CCPredicateAction!"); 115 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O); 118 if (Action->isSubClassOf("CCDelegateTo")) { 119 Record *CC = Action->getValueAsDef("CC"); 123 } else if (Action->isSubClassOf("CCAssignToReg")) { 124 ListInit *RegList = Action->getValueAsListInit("RegList"); 144 } else if (Action->isSubClassOf("CCAssignToRegWithShadow")) { 145 ListInit *RegList = Action->getValueAsListInit("RegList"); 146 ListInit *ShadowRegList = Action->getValueAsListInit("ShadowRegList"); 148 PrintFatalError(Action->getLoc(), 186 } else if (Action->isSubClassOf("CCAssignToStack")) { 187 int Size = Action->getValueAsInt("Size"); 188 int Align = Action->getValueAsInt("Align"); 210 } else if (Action->isSubClassOf("CCAssignToStackWithShadow")) { 211 int Size = Action->getValueAsInt("Size"); 212 int Align = Action->getValueAsInt("Align"); 213 ListInit *ShadowRegList = Action->getValueAsListInit("ShadowRegList"); 233 } else if (Action->isSubClassOf("CCPromoteToType")) { 234 Record *DestTy = Action->getValueAsDef("DestTy"); 247 } else if (Action->isSubClassOf("CCPromoteToUpperBitsInType")) { 248 Record *DestTy = Action->getValueAsDef("DestTy"); 252 PrintFatalError(Action->getLoc(), 263 } else if (Action->isSubClassOf("CCBitConvertToType")) { 264 Record *DestTy = Action->getValueAsDef("DestTy"); 267 } else if (Action->isSubClassOf("CCTruncToType")) { 268 Record *DestTy = Action->getValueAsDef("DestTy"); 271 } else if (Action->isSubClassOf("CCPassIndirect")) { 272 Record *DestTy = Action->getValueAsDef("DestTy"); 275 } else if (Action->isSubClassOf("CCPassByVal")) { 276 int Size = Action->getValueAsInt("Size"); 277 int Align = Action->getValueAsInt("Align"); 282 } else if (Action->isSubClassOf("CCCustom")) { 284 << "if (" << Action->getValueAsString("FuncName") << "(ValNo, ValVT, " 288 errs() << *Action; 289 PrintFatalError(Action->getLoc(), "Unknown CCAction!");