Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
clang/lib/AST/JSONNodeDumper.cpp
Show First 20 Lines • Show All 656 Lines • ▼ Show 20 Lines | case VectorType::NeonPolyVector: | ||||
JOS.attribute("vectorKind", "neon poly"); | JOS.attribute("vectorKind", "neon poly"); | ||||
break; | break; | ||||
case VectorType::SveFixedLengthDataVector: | case VectorType::SveFixedLengthDataVector: | ||||
JOS.attribute("vectorKind", "fixed-length sve data vector"); | JOS.attribute("vectorKind", "fixed-length sve data vector"); | ||||
break; | break; | ||||
case VectorType::SveFixedLengthPredicateVector: | case VectorType::SveFixedLengthPredicateVector: | ||||
JOS.attribute("vectorKind", "fixed-length sve predicate vector"); | JOS.attribute("vectorKind", "fixed-length sve predicate vector"); | ||||
break; | break; | ||||
case VectorType::RVVFixedLengthDataVector: | |||||
JOS.attribute("vectorKind", "fixed-length rvv data vector"); | |||||
break; | |||||
} | } | ||||
} | } | ||||
void JSONNodeDumper::VisitUnresolvedUsingType(const UnresolvedUsingType *UUT) { | void JSONNodeDumper::VisitUnresolvedUsingType(const UnresolvedUsingType *UUT) { | ||||
JOS.attribute("decl", createBareDeclRef(UUT->getDecl())); | JOS.attribute("decl", createBareDeclRef(UUT->getDecl())); | ||||
} | } | ||||
void JSONNodeDumper::VisitUnaryTransformType(const UnaryTransformType *UTT) { | void JSONNodeDumper::VisitUnaryTransformType(const UnaryTransformType *UTT) { | ||||
▲ Show 20 Lines • Show All 1,075 Lines • Show Last 20 Lines |