35#include "llvm/ADT/ArrayRef.h"
36#include "llvm/ADT/DenseMap.h"
37#include "llvm/ADT/SmallString.h"
38#include "llvm/ADT/StringRef.h"
39#include "llvm/ADT/Twine.h"
40#include "llvm/Support/Casting.h"
41#include "llvm/Support/Compiler.h"
42#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/SaveAndRestore.h"
44#include "llvm/Support/raw_ostream.h"
54class IncludeStrongLifetimeRAII {
60 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
68class ParamPolicyRAII {
74 : Policy(Policy), Old(Policy.SuppressSpecifiers) {
81class DefaultTemplateArgsPolicyRAII {
87 : Policy(Policy), Old(Policy.SuppressDefaultTemplateArgs) {
94class ElaboratedTypePolicyRAII {
96 bool SuppressTagKeyword;
100 explicit ElaboratedTypePolicyRAII(
PrintingPolicy &Policy) : Policy(Policy) {
107 ~ElaboratedTypePolicyRAII() {
115 unsigned Indentation;
116 bool HasEmptyPlaceHolder =
false;
117 bool InsideCCAttribute =
false;
120 explicit TypePrinter(
const PrintingPolicy &Policy,
unsigned Indentation = 0)
121 : Policy(Policy), Indentation(Indentation) {}
124 StringRef PlaceHolder);
127 static bool canPrefixQualifiers(
const Type *
T,
bool &NeedARCStrongQualifier);
128 void spaceBeforePlaceHolder(raw_ostream &OS);
129 void printTypeSpec(
NamedDecl *
D, raw_ostream &OS);
133 void printBefore(
QualType T, raw_ostream &OS);
134 void printAfter(
QualType T, raw_ostream &OS);
137 void printTag(
TagDecl *
T, raw_ostream &OS);
139#define ABSTRACT_TYPE(CLASS, PARENT)
140#define TYPE(CLASS, PARENT) \
141 void print##CLASS##Before(const CLASS##Type *T, raw_ostream &OS); \
142 void print##CLASS##After(const CLASS##Type *T, raw_ostream &OS);
143#include "clang/AST/TypeNodes.inc"
153 bool HasRestrictKeyword) {
154 bool appendSpace =
false;
160 if (appendSpace) OS <<
' ';
165 if (appendSpace) OS <<
' ';
166 if (HasRestrictKeyword) {
174void TypePrinter::spaceBeforePlaceHolder(raw_ostream &OS) {
175 if (!HasEmptyPlaceHolder)
186void TypePrinter::print(
QualType t, raw_ostream &OS, StringRef PlaceHolder) {
191void TypePrinter::print(
const Type *
T,
Qualifiers Quals, raw_ostream &OS,
192 StringRef PlaceHolder) {
200 printBefore(
T, Quals, OS);
202 printAfter(
T, Quals, OS);
205bool TypePrinter::canPrefixQualifiers(
const Type *
T,
206 bool &NeedARCStrongQualifier) {
212 bool CanPrefixQualifiers =
false;
213 NeedARCStrongQualifier =
false;
214 const Type *UnderlyingType =
T;
215 if (
const auto *AT = dyn_cast<AutoType>(
T))
216 UnderlyingType = AT->desugar().getTypePtr();
217 if (
const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(
T))
218 UnderlyingType = Subst->getReplacementType().getTypePtr();
225 case Type::UnresolvedUsing:
228 case Type::TypeOfExpr:
231 case Type::UnaryTransform:
234 case Type::Elaborated:
235 case Type::TemplateTypeParm:
236 case Type::SubstTemplateTypeParmPack:
237 case Type::DeducedTemplateSpecialization:
238 case Type::TemplateSpecialization:
239 case Type::InjectedClassName:
240 case Type::DependentName:
241 case Type::DependentTemplateSpecialization:
242 case Type::ObjCObject:
243 case Type::ObjCTypeParam:
244 case Type::ObjCInterface:
248 case Type::DependentBitInt:
249 case Type::BTFTagAttributed:
250 CanPrefixQualifiers =
true;
253 case Type::ObjCObjectPointer:
258 case Type::VariableArray:
259 case Type::DependentSizedArray:
260 NeedARCStrongQualifier =
true;
263 case Type::ConstantArray:
264 case Type::IncompleteArray:
265 return canPrefixQualifiers(
266 cast<ArrayType>(UnderlyingType)->getElementType().getTypePtr(),
267 NeedARCStrongQualifier);
271 case Type::ArrayParameter:
273 case Type::BlockPointer:
274 case Type::LValueReference:
275 case Type::RValueReference:
276 case Type::MemberPointer:
277 case Type::DependentAddressSpace:
278 case Type::DependentVector:
279 case Type::DependentSizedExtVector:
281 case Type::ExtVector:
282 case Type::ConstantMatrix:
283 case Type::DependentSizedMatrix:
284 case Type::FunctionProto:
285 case Type::FunctionNoProto:
287 case Type::PackExpansion:
288 case Type::SubstTemplateTypeParm:
289 case Type::MacroQualified:
290 case Type::CountAttributed:
291 CanPrefixQualifiers =
false;
294 case Type::Attributed: {
297 const auto *AttrTy = cast<AttributedType>(UnderlyingType);
298 CanPrefixQualifiers = AttrTy->getAttrKind() == attr::AddressSpace;
301 case Type::PackIndexing: {
302 return canPrefixQualifiers(
303 cast<PackIndexingType>(UnderlyingType)->getPattern().getTypePtr(),
304 NeedARCStrongQualifier);
308 return CanPrefixQualifiers;
311void TypePrinter::printBefore(
QualType T, raw_ostream &OS) {
317 if (
const auto *Subst = dyn_cast<SubstTemplateTypeParmType>(
Split.Ty))
320 printBefore(
Split.Ty, Quals, OS);
325void TypePrinter::printBefore(
const Type *
T,
Qualifiers Quals, raw_ostream &OS) {
333 bool CanPrefixQualifiers =
false;
334 bool NeedARCStrongQualifier =
false;
335 CanPrefixQualifiers = canPrefixQualifiers(
T, NeedARCStrongQualifier);
337 if (CanPrefixQualifiers && !Quals.
empty()) {
338 if (NeedARCStrongQualifier) {
339 IncludeStrongLifetimeRAII Strong(Policy);
340 Quals.
print(OS, Policy,
true);
342 Quals.
print(OS, Policy,
true);
346 bool hasAfterQuals =
false;
347 if (!CanPrefixQualifiers && !Quals.
empty()) {
350 HasEmptyPlaceHolder =
false;
354#define ABSTRACT_TYPE(CLASS, PARENT)
355#define TYPE(CLASS, PARENT) case Type::CLASS: \
356 print##CLASS##Before(cast<CLASS##Type>(T), OS); \
358#include "clang/AST/TypeNodes.inc"
362 if (NeedARCStrongQualifier) {
363 IncludeStrongLifetimeRAII Strong(Policy);
364 Quals.
print(OS, Policy, !PrevPHIsEmpty.get());
366 Quals.
print(OS, Policy, !PrevPHIsEmpty.get());
371void TypePrinter::printAfter(
QualType t, raw_ostream &OS) {
373 printAfter(split.
Ty, split.
Quals, OS);
378void TypePrinter::printAfter(
const Type *
T,
Qualifiers Quals, raw_ostream &OS) {
380#define ABSTRACT_TYPE(CLASS, PARENT)
381#define TYPE(CLASS, PARENT) case Type::CLASS: \
382 print##CLASS##After(cast<CLASS##Type>(T), OS); \
384#include "clang/AST/TypeNodes.inc"
388void TypePrinter::printBuiltinBefore(
const BuiltinType *
T, raw_ostream &OS) {
389 OS <<
T->getName(Policy);
390 spaceBeforePlaceHolder(OS);
393void TypePrinter::printBuiltinAfter(
const BuiltinType *
T, raw_ostream &OS) {}
395void TypePrinter::printComplexBefore(
const ComplexType *
T, raw_ostream &OS) {
397 printBefore(
T->getElementType(), OS);
400void TypePrinter::printComplexAfter(
const ComplexType *
T, raw_ostream &OS) {
401 printAfter(
T->getElementType(), OS);
404void TypePrinter::printPointerBefore(
const PointerType *
T, raw_ostream &OS) {
405 IncludeStrongLifetimeRAII Strong(Policy);
415void TypePrinter::printPointerAfter(
const PointerType *
T, raw_ostream &OS) {
416 IncludeStrongLifetimeRAII Strong(Policy);
448 IncludeStrongLifetimeRAII Strong(Policy);
451 printBefore(Inner, OS);
454 if (isa<ArrayType>(Inner))
461 IncludeStrongLifetimeRAII Strong(Policy);
466 if (isa<ArrayType>(Inner))
468 printAfter(Inner, OS);
473 IncludeStrongLifetimeRAII Strong(Policy);
476 printBefore(Inner, OS);
479 if (isa<ArrayType>(Inner))
486 IncludeStrongLifetimeRAII Strong(Policy);
491 if (isa<ArrayType>(Inner))
493 printAfter(Inner, OS);
498 IncludeStrongLifetimeRAII Strong(Policy);
507 InnerPolicy.IncludeTagDefinition =
false;
508 TypePrinter(InnerPolicy).print(
QualType(
T->getClass(), 0), OS, StringRef());
515 IncludeStrongLifetimeRAII Strong(Policy);
526 IncludeStrongLifetimeRAII Strong(Policy);
527 printBefore(
T->getElementType(), OS);
533 if (
T->getIndexTypeQualifiers().hasQualifiers()) {
539 if (
T->getSizeModifier() == ArraySizeModifier::Static)
542 OS <<
T->getZExtSize() <<
']';
543 printAfter(
T->getElementType(), OS);
548 IncludeStrongLifetimeRAII Strong(Policy);
549 printBefore(
T->getElementType(), OS);
555 printAfter(
T->getElementType(), OS);
560 IncludeStrongLifetimeRAII Strong(Policy);
561 printBefore(
T->getElementType(), OS);
567 if (
T->getIndexTypeQualifiers().hasQualifiers()) {
572 if (
T->getSizeModifier() == ArraySizeModifier::Static)
574 else if (
T->getSizeModifier() == ArraySizeModifier::Star)
577 if (
T->getSizeExpr())
578 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
581 printAfter(
T->getElementType(), OS);
584void TypePrinter::printAdjustedBefore(
const AdjustedType *
T, raw_ostream &OS) {
587 printBefore(
T->getAdjustedType(), OS);
590void TypePrinter::printAdjustedAfter(
const AdjustedType *
T, raw_ostream &OS) {
591 printAfter(
T->getAdjustedType(), OS);
594void TypePrinter::printDecayedBefore(
const DecayedType *
T, raw_ostream &OS) {
596 printAdjustedBefore(
T, OS);
601 printConstantArrayAfter(
T, OS);
606 printConstantArrayBefore(
T, OS);
609void TypePrinter::printDecayedAfter(
const DecayedType *
T, raw_ostream &OS) {
610 printAdjustedAfter(
T, OS);
613void TypePrinter::printDependentSizedArrayBefore(
616 IncludeStrongLifetimeRAII Strong(Policy);
617 printBefore(
T->getElementType(), OS);
620void TypePrinter::printDependentSizedArrayAfter(
624 if (
T->getSizeExpr())
625 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
627 printAfter(
T->getElementType(), OS);
630void TypePrinter::printDependentAddressSpaceBefore(
635void TypePrinter::printDependentAddressSpaceAfter(
637 OS <<
" __attribute__((address_space(";
638 if (
T->getAddrSpaceExpr())
639 T->getAddrSpaceExpr()->printPretty(OS,
nullptr, Policy);
644void TypePrinter::printDependentSizedExtVectorBefore(
647 if (Policy.UseHLSLTypes)
649 printBefore(
T->getElementType(), OS);
652void TypePrinter::printDependentSizedExtVectorAfter(
655 if (Policy.UseHLSLTypes) {
657 if (
T->getSizeExpr())
658 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
661 OS <<
" __attribute__((ext_vector_type(";
662 if (
T->getSizeExpr())
663 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
666 printAfter(
T->getElementType(), OS);
669void TypePrinter::printVectorBefore(
const VectorType *
T, raw_ostream &OS) {
670 switch (
T->getVectorKind()) {
671 case VectorKind::AltiVecPixel:
672 OS <<
"__vector __pixel ";
674 case VectorKind::AltiVecBool:
675 OS <<
"__vector __bool ";
676 printBefore(
T->getElementType(), OS);
678 case VectorKind::AltiVecVector:
680 printBefore(
T->getElementType(), OS);
682 case VectorKind::Neon:
683 OS <<
"__attribute__((neon_vector_type("
684 <<
T->getNumElements() <<
"))) ";
685 printBefore(
T->getElementType(), OS);
687 case VectorKind::NeonPoly:
688 OS <<
"__attribute__((neon_polyvector_type(" <<
689 T->getNumElements() <<
"))) ";
690 printBefore(
T->getElementType(), OS);
692 case VectorKind::Generic: {
695 OS <<
"__attribute__((__vector_size__("
696 <<
T->getNumElements()
698 print(
T->getElementType(), OS, StringRef());
700 printBefore(
T->getElementType(), OS);
703 case VectorKind::SveFixedLengthData:
704 case VectorKind::SveFixedLengthPredicate:
707 OS <<
"__attribute__((__arm_sve_vector_bits__(";
709 if (
T->getVectorKind() == VectorKind::SveFixedLengthPredicate)
712 OS <<
T->getNumElements() * 8;
714 OS <<
T->getNumElements();
717 print(
T->getElementType(), OS, StringRef());
720 printBefore(
T->getElementType(), OS);
722 case VectorKind::RVVFixedLengthData:
723 case VectorKind::RVVFixedLengthMask:
724 case VectorKind::RVVFixedLengthMask_1:
725 case VectorKind::RVVFixedLengthMask_2:
726 case VectorKind::RVVFixedLengthMask_4:
729 OS <<
"__attribute__((__riscv_rvv_vector_bits__(";
731 OS <<
T->getNumElements();
734 print(
T->getElementType(), OS, StringRef());
737 printBefore(
T->getElementType(), OS);
742void TypePrinter::printVectorAfter(
const VectorType *
T, raw_ostream &OS) {
743 printAfter(
T->getElementType(), OS);
746void TypePrinter::printDependentVectorBefore(
748 switch (
T->getVectorKind()) {
749 case VectorKind::AltiVecPixel:
750 OS <<
"__vector __pixel ";
752 case VectorKind::AltiVecBool:
753 OS <<
"__vector __bool ";
754 printBefore(
T->getElementType(), OS);
756 case VectorKind::AltiVecVector:
758 printBefore(
T->getElementType(), OS);
760 case VectorKind::Neon:
761 OS <<
"__attribute__((neon_vector_type(";
762 if (
T->getSizeExpr())
763 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
765 printBefore(
T->getElementType(), OS);
767 case VectorKind::NeonPoly:
768 OS <<
"__attribute__((neon_polyvector_type(";
769 if (
T->getSizeExpr())
770 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
772 printBefore(
T->getElementType(), OS);
774 case VectorKind::Generic: {
777 OS <<
"__attribute__((__vector_size__(";
778 if (
T->getSizeExpr())
779 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
781 print(
T->getElementType(), OS, StringRef());
783 printBefore(
T->getElementType(), OS);
786 case VectorKind::SveFixedLengthData:
787 case VectorKind::SveFixedLengthPredicate:
790 OS <<
"__attribute__((__arm_sve_vector_bits__(";
791 if (
T->getSizeExpr()) {
792 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
793 if (
T->getVectorKind() == VectorKind::SveFixedLengthPredicate)
798 print(
T->getElementType(), OS, StringRef());
803 printBefore(
T->getElementType(), OS);
805 case VectorKind::RVVFixedLengthData:
806 case VectorKind::RVVFixedLengthMask:
807 case VectorKind::RVVFixedLengthMask_1:
808 case VectorKind::RVVFixedLengthMask_2:
809 case VectorKind::RVVFixedLengthMask_4:
812 OS <<
"__attribute__((__riscv_rvv_vector_bits__(";
813 if (
T->getSizeExpr()) {
814 T->getSizeExpr()->printPretty(OS,
nullptr, Policy);
816 print(
T->getElementType(), OS, StringRef());
821 printBefore(
T->getElementType(), OS);
826void TypePrinter::printDependentVectorAfter(
828 printAfter(
T->getElementType(), OS);
833 if (Policy.UseHLSLTypes)
835 printBefore(
T->getElementType(), OS);
838void TypePrinter::printExtVectorAfter(
const ExtVectorType *
T, raw_ostream &OS) {
839 printAfter(
T->getElementType(), OS);
841 if (Policy.UseHLSLTypes) {
843 OS <<
T->getNumElements();
846 OS <<
" __attribute__((ext_vector_type(";
847 OS <<
T->getNumElements();
854 printBefore(
T->getElementType(), OS);
855 OS <<
" __attribute__((matrix_type(";
856 OS <<
T->getNumRows() <<
", " <<
T->getNumColumns();
862 printAfter(
T->getElementType(), OS);
865void TypePrinter::printDependentSizedMatrixBefore(
867 printBefore(
T->getElementType(), OS);
868 OS <<
" __attribute__((matrix_type(";
869 if (
T->getRowExpr()) {
870 T->getRowExpr()->printPretty(OS,
nullptr, Policy);
873 if (
T->getColumnExpr()) {
874 T->getColumnExpr()->printPretty(OS,
nullptr, Policy);
879void TypePrinter::printDependentSizedMatrixAfter(
881 printAfter(
T->getElementType(), OS);
901 OS <<
" __attribute__((nothrow))";
919 if (!HasEmptyPlaceHolder)
925 if (!PrevPHIsEmpty.get())
933 llvm_unreachable(
"asking for spelling of ordinary parameter ABI");
935 return "swift_context";
937 return "swift_async_context";
939 return "swift_error_result";
941 return "swift_indirect_result";
943 llvm_unreachable(
"bad parameter ABI kind");
949 if (!HasEmptyPlaceHolder)
955 ParamPolicyRAII ParamPolicy(Policy);
960 if (EPI.isConsumed()) OS <<
"__attribute__((ns_consumed)) ";
961 if (EPI.isNoEscape())
962 OS <<
"__attribute__((noescape)) ";
963 auto ABI = EPI.getABI();
975 }
else if (
T->
getNumParams() == 0 && Policy.UseVoidForZeroParams) {
986 OS <<
" __arm_streaming_compatible";
988 OS <<
" __arm_streaming";
990 OS <<
" __arm_preserves(\"za\")";
992 OS <<
" __arm_in(\"za\")";
994 OS <<
" __arm_out(\"za\")";
996 OS <<
" __arm_inout(\"za\")";
998 OS <<
" __arm_preserves(\"zt0\")";
1000 OS <<
" __arm_in(\"zt0\")";
1002 OS <<
" __arm_out(\"zt0\")";
1004 OS <<
" __arm_inout(\"zt0\")";
1006 printFunctionAfter(Info, OS);
1026 for (
const auto &CFE : FX) {
1027 OS <<
" __attribute__((" << CFE.Effect.name();
1028 if (
const Expr *
E = CFE.Cond.getCondition()) {
1045 if (!InsideCCAttribute) {
1046 switch (Info.
getCC()) {
1057 OS <<
" __attribute__((stdcall))";
1060 OS <<
" __attribute__((fastcall))";
1063 OS <<
" __attribute__((thiscall))";
1066 OS <<
" __attribute__((vectorcall))";
1069 OS <<
" __attribute__((pascal))";
1072 OS <<
" __attribute__((pcs(\"aapcs\")))";
1075 OS <<
" __attribute__((pcs(\"aapcs-vfp\")))";
1078 OS <<
"__attribute__((aarch64_vector_pcs))";
1081 OS <<
"__attribute__((aarch64_sve_pcs))";
1084 OS <<
"__attribute__((amdgpu_kernel))";
1087 OS <<
" __attribute__((intel_ocl_bicc))";
1090 OS <<
" __attribute__((ms_abi))";
1093 OS <<
" __attribute__((sysv_abi))";
1096 OS <<
" __attribute__((regcall))";
1103 OS <<
" __attribute__((swiftcall))";
1106 OS <<
"__attribute__((swiftasynccall))";
1109 OS <<
" __attribute__((preserve_most))";
1112 OS <<
" __attribute__((preserve_all))";
1115 OS <<
" __attribute__((m68k_rtd))";
1118 OS <<
" __attribute__((preserve_none))";
1121 OS <<
"__attribute__((riscv_vector_cc))";
1127 OS <<
" __attribute__((noreturn))";
1129 OS <<
" __attribute__((cmse_nonsecure_call))";
1131 OS <<
" __attribute__((ns_returns_retained))";
1133 OS <<
" __attribute__((regparm ("
1136 OS <<
" __attribute__((no_caller_saved_registers))";
1138 OS <<
" __attribute__((nocf_check))";
1146 if (!PrevPHIsEmpty.get())
1153 if (!HasEmptyPlaceHolder)
1162void TypePrinter::printTypeSpec(
NamedDecl *
D, raw_ostream &OS) {
1167 if (!Policy.SuppressScope)
1172 spaceBeforePlaceHolder(OS);
1177 printTypeSpec(
T->getDecl(), OS);
1183void TypePrinter::printUsingBefore(
const UsingType *
T, raw_ostream &OS) {
1193 printTypeSpec(
T->getFoundDecl()->getUnderlyingDecl(), OS);
1196void TypePrinter::printUsingAfter(
const UsingType *
T, raw_ostream &OS) {}
1198void TypePrinter::printTypedefBefore(
const TypedefType *
T, raw_ostream &OS) {
1199 printTypeSpec(
T->getDecl(), OS);
1204 StringRef MacroName =
T->getMacroIdentifier()->getName();
1205 OS << MacroName <<
" ";
1209 printBefore(
T->getModifiedType(), OS);
1214 printAfter(
T->getModifiedType(), OS);
1217void TypePrinter::printTypedefAfter(
const TypedefType *
T, raw_ostream &OS) {}
1223 if (
T->getUnderlyingExpr())
1224 T->getUnderlyingExpr()->printPretty(OS,
nullptr, Policy);
1225 spaceBeforePlaceHolder(OS);
1231void TypePrinter::printTypeOfBefore(
const TypeOfType *
T, raw_ostream &OS) {
1234 print(
T->getUnmodifiedType(), OS, StringRef());
1236 spaceBeforePlaceHolder(OS);
1239void TypePrinter::printTypeOfAfter(
const TypeOfType *
T, raw_ostream &OS) {}
1241void TypePrinter::printDecltypeBefore(
const DecltypeType *
T, raw_ostream &OS) {
1243 if (
T->getUnderlyingExpr())
1244 T->getUnderlyingExpr()->printPretty(OS,
nullptr, Policy);
1246 spaceBeforePlaceHolder(OS);
1251 if (
T->hasSelectedType()) {
1252 OS <<
T->getSelectedType();
1254 OS <<
T->getPattern() <<
"...[";
1255 T->getIndexExpr()->printPretty(OS,
nullptr, Policy);
1258 spaceBeforePlaceHolder(OS);
1264void TypePrinter::printDecltypeAfter(
const DecltypeType *
T, raw_ostream &OS) {}
1268 IncludeStrongLifetimeRAII Strong(Policy);
1270 static llvm::DenseMap<int, const char *> Transformation = {{
1271#define TRANSFORM_TYPE_TRAIT_DEF(Enum, Trait) \
1272 {UnaryTransformType::Enum, "__" #Trait},
1273#include "clang/Basic/TransformTypeTraits.def"
1275 OS << Transformation[
T->getUTTKind()] <<
'(';
1276 print(
T->getBaseType(), OS, StringRef());
1278 spaceBeforePlaceHolder(OS);
1284void TypePrinter::printAutoBefore(
const AutoType *
T, raw_ostream &OS) {
1286 if (!
T->getDeducedType().isNull()) {
1287 printBefore(
T->getDeducedType(), OS);
1289 if (
T->isConstrained()) {
1292 T->getTypeConstraintConcept()->getDeclName().print(OS, Policy);
1293 auto Args =
T->getTypeConstraintArguments();
1297 T->getTypeConstraintConcept()->getTemplateParameters());
1300 switch (
T->getKeyword()) {
1305 spaceBeforePlaceHolder(OS);
1309void TypePrinter::printAutoAfter(
const AutoType *
T, raw_ostream &OS) {
1311 if (!
T->getDeducedType().isNull())
1312 printAfter(
T->getDeducedType(), OS);
1315void TypePrinter::printDeducedTemplateSpecializationBefore(
1318 if (!
T->getDeducedType().isNull()) {
1319 printBefore(
T->getDeducedType(), OS);
1321 IncludeStrongLifetimeRAII Strong(Policy);
1322 T->getTemplateName().print(OS, Policy);
1323 spaceBeforePlaceHolder(OS);
1327void TypePrinter::printDeducedTemplateSpecializationAfter(
1330 if (!
T->getDeducedType().isNull())
1331 printAfter(
T->getDeducedType(), OS);
1334void TypePrinter::printAtomicBefore(
const AtomicType *
T, raw_ostream &OS) {
1335 IncludeStrongLifetimeRAII Strong(Policy);
1338 print(
T->getValueType(), OS, StringRef());
1340 spaceBeforePlaceHolder(OS);
1343void TypePrinter::printAtomicAfter(
const AtomicType *
T, raw_ostream &OS) {}
1345void TypePrinter::printPipeBefore(
const PipeType *
T, raw_ostream &OS) {
1346 IncludeStrongLifetimeRAII Strong(Policy);
1348 if (
T->isReadOnly())
1351 OS <<
"write_only ";
1353 print(
T->getElementType(), OS, StringRef());
1354 spaceBeforePlaceHolder(OS);
1357void TypePrinter::printPipeAfter(
const PipeType *
T, raw_ostream &OS) {}
1359void TypePrinter::printBitIntBefore(
const BitIntType *
T, raw_ostream &OS) {
1360 if (
T->isUnsigned())
1362 OS <<
"_BitInt(" <<
T->getNumBits() <<
")";
1363 spaceBeforePlaceHolder(OS);
1366void TypePrinter::printBitIntAfter(
const BitIntType *
T, raw_ostream &OS) {}
1370 if (
T->isUnsigned())
1373 T->getNumBitsExpr()->printPretty(OS,
nullptr, Policy);
1375 spaceBeforePlaceHolder(OS);
1382void TypePrinter::AppendScope(
DeclContext *DC, raw_ostream &OS,
1392 if (Policy.Callbacks && Policy.Callbacks->isScopeVisible(DC))
1395 if (
const auto *NS = dyn_cast<NamespaceDecl>(DC)) {
1396 if (Policy.SuppressUnwrittenScope && NS->isAnonymousNamespace())
1397 return AppendScope(DC->
getParent(), OS, NameInScope);
1401 if (Policy.SuppressInlineNamespace && NS->isInline() && NameInScope &&
1402 NS->isRedundantInlineQualifierFor(NameInScope))
1403 return AppendScope(DC->
getParent(), OS, NameInScope);
1405 AppendScope(DC->
getParent(), OS, NS->getDeclName());
1406 if (NS->getIdentifier())
1407 OS << NS->getName() <<
"::";
1409 OS <<
"(anonymous namespace)::";
1410 }
else if (
const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
1411 AppendScope(DC->
getParent(), OS, Spec->getDeclName());
1412 IncludeStrongLifetimeRAII Strong(Policy);
1413 OS << Spec->getIdentifier()->getName();
1416 OS, TemplateArgs.
asArray(), Policy,
1417 Spec->getSpecializedTemplate()->getTemplateParameters());
1419 }
else if (
const auto *Tag = dyn_cast<TagDecl>(DC)) {
1422 OS << Typedef->getIdentifier()->getName() <<
"::";
1423 else if (
Tag->getIdentifier())
1424 OS <<
Tag->getIdentifier()->getName() <<
"::";
1428 AppendScope(DC->
getParent(), OS, NameInScope);
1432void TypePrinter::printTag(
TagDecl *
D, raw_ostream &OS) {
1433 if (Policy.IncludeTagDefinition) {
1436 D->
print(OS, SubPolicy, Indentation);
1437 spaceBeforePlaceHolder(OS);
1441 bool HasKindDecoration =
false;
1445 if (!Policy.SuppressTagKeyword && !
D->getTypedefNameForAnonDecl()) {
1446 HasKindDecoration =
true;
1447 OS <<
D->getKindName();
1454 if (!Policy.SuppressScope)
1460 assert(Typedef->getIdentifier() &&
"Typedef without identifier?");
1461 OS << Typedef->getIdentifier()->getName();
1465 OS << (Policy.MSVCFormatting ?
'`' :
'(');
1467 if (isa<CXXRecordDecl>(
D) && cast<CXXRecordDecl>(
D)->isLambda()) {
1469 HasKindDecoration =
true;
1470 }
else if ((isa<RecordDecl>(
D) && cast<RecordDecl>(
D)->isAnonymousStructOrUnion())) {
1476 if (Policy.AnonymousTagLocations) {
1480 if (!HasKindDecoration)
1481 OS <<
" " <<
D->getKindName();
1489 if (
auto *Callbacks = Policy.Callbacks)
1490 WrittenFile = Callbacks->remapPath(
File);
1494 llvm::sys::path::Style Style =
1495 llvm::sys::path::is_absolute(WrittenFile)
1496 ? llvm::sys::path::Style::native
1497 : (Policy.MSVCFormatting
1498 ? llvm::sys::path::Style::windows_backslash
1499 : llvm::sys::path::Style::posix);
1500 llvm::sys::path::native(WrittenFile, Style);
1505 OS << (Policy.MSVCFormatting ?
'\'' :
')');
1510 if (
auto *S = dyn_cast<ClassTemplateSpecializationDecl>(
D)) {
1512 S->getSpecializedTemplate()->getTemplateParameters();
1514 S->getTemplateArgsAsWritten();
1515 IncludeStrongLifetimeRAII Strong(Policy);
1516 if (TArgAsWritten && !Policy.PrintCanonicalTypes)
1524 spaceBeforePlaceHolder(OS);
1527void TypePrinter::printRecordBefore(
const RecordType *
T, raw_ostream &OS) {
1529 if (Policy.UsePreferredNames) {
1530 for (
const auto *PNA :
T->getDecl()->specific_attrs<PreferredNameAttr>()) {
1537 if (
auto *TT = dyn_cast<TypedefType>(
T))
1538 return printTypeSpec(TT->getDecl(), OS);
1539 if (
auto *TST = dyn_cast<TemplateSpecializationType>(
T))
1540 return printTemplateId(TST, OS,
true);
1546 printTag(
T->getDecl(), OS);
1549void TypePrinter::printRecordAfter(
const RecordType *
T, raw_ostream &OS) {}
1551void TypePrinter::printEnumBefore(
const EnumType *
T, raw_ostream &OS) {
1552 printTag(
T->getDecl(), OS);
1555void TypePrinter::printEnumAfter(
const EnumType *
T, raw_ostream &OS) {}
1561 if (
auto *TC =
D->getTypeConstraint()) {
1562 TC->print(OS, Policy);
1567 OS << (Policy.CleanUglifiedParameters ?
Id->deuglifiedName()
1570 OS <<
"type-parameter-" <<
T->getDepth() <<
'-' <<
T->getIndex();
1572 spaceBeforePlaceHolder(OS);
1578void TypePrinter::printSubstTemplateTypeParmBefore(
1581 IncludeStrongLifetimeRAII Strong(Policy);
1582 printBefore(
T->getReplacementType(), OS);
1585void TypePrinter::printSubstTemplateTypeParmAfter(
1588 IncludeStrongLifetimeRAII Strong(Policy);
1589 printAfter(
T->getReplacementType(), OS);
1592void TypePrinter::printSubstTemplateTypeParmPackBefore(
1595 IncludeStrongLifetimeRAII Strong(Policy);
1598 if (
auto *TC =
D->getTypeConstraint()) {
1599 TC->print(OS, Policy);
1604 OS << (Policy.CleanUglifiedParameters ?
Id->deuglifiedName()
1607 OS <<
"type-parameter-" <<
D->getDepth() <<
'-' <<
D->getIndex();
1609 spaceBeforePlaceHolder(OS);
1613void TypePrinter::printSubstTemplateTypeParmPackAfter(
1616 IncludeStrongLifetimeRAII Strong(Policy);
1620 raw_ostream &OS,
bool FullyQualify) {
1621 IncludeStrongLifetimeRAII Strong(Policy);
1623 TemplateDecl *TD =
T->getTemplateName().getAsTemplateDecl();
1625 if (FullyQualify && TD) {
1626 if (!Policy.SuppressScope)
1634 DefaultTemplateArgsPolicyRAII TemplateArgs(Policy);
1637 spaceBeforePlaceHolder(OS);
1640void TypePrinter::printTemplateSpecializationBefore(
1643 printTemplateId(
T, OS, Policy.FullyQualifiedName);
1646void TypePrinter::printTemplateSpecializationAfter(
1652 if (Policy.PrintInjectedClassNameWithArguments)
1653 return printTemplateSpecializationBefore(
T->getInjectedTST(), OS);
1655 IncludeStrongLifetimeRAII Strong(Policy);
1656 T->getTemplateName().print(OS, Policy);
1657 spaceBeforePlaceHolder(OS);
1665 if (Policy.IncludeTagDefinition &&
T->getOwnedTagDecl()) {
1666 TagDecl *OwnedTagDecl =
T->getOwnedTagDecl();
1667 assert(OwnedTagDecl->
getTypeForDecl() ==
T->getNamedType().getTypePtr() &&
1668 "OwnedTagDecl expected to be a declaration for the type");
1671 OwnedTagDecl->
print(OS, SubPolicy, Indentation);
1672 spaceBeforePlaceHolder(OS);
1676 if (Policy.SuppressElaboration) {
1677 printBefore(
T->getNamedType(), OS);
1682 if (!Policy.IncludeTagDefinition)
1688 if (!Policy.SuppressTagKeyword && Policy.SuppressScope &&
1689 !Policy.SuppressUnwrittenScope) {
1690 bool OldTagKeyword = Policy.SuppressTagKeyword;
1691 bool OldSupressScope = Policy.SuppressScope;
1692 Policy.SuppressTagKeyword =
true;
1693 Policy.SuppressScope =
false;
1694 printBefore(
T->getNamedType(), OS);
1695 Policy.SuppressTagKeyword = OldTagKeyword;
1696 Policy.SuppressScope = OldSupressScope;
1703 ElaboratedTypePolicyRAII PolicyRAII(Policy);
1704 printBefore(
T->getNamedType(), OS);
1709 if (Policy.IncludeTagDefinition &&
T->getOwnedTagDecl())
1712 if (Policy.SuppressElaboration) {
1713 printAfter(
T->getNamedType(), OS);
1717 ElaboratedTypePolicyRAII PolicyRAII(Policy);
1718 printAfter(
T->getNamedType(), OS);
1721void TypePrinter::printParenBefore(
const ParenType *
T, raw_ostream &OS) {
1722 if (!HasEmptyPlaceHolder && !isa<FunctionType>(
T->getInnerType())) {
1723 printBefore(
T->getInnerType(), OS);
1726 printBefore(
T->getInnerType(), OS);
1729void TypePrinter::printParenAfter(
const ParenType *
T, raw_ostream &OS) {
1730 if (!HasEmptyPlaceHolder && !isa<FunctionType>(
T->getInnerType())) {
1732 printAfter(
T->getInnerType(), OS);
1734 printAfter(
T->getInnerType(), OS);
1743 T->getQualifier()->print(OS, Policy);
1745 OS <<
T->getIdentifier()->getName();
1746 spaceBeforePlaceHolder(OS);
1752void TypePrinter::printDependentTemplateSpecializationBefore(
1754 IncludeStrongLifetimeRAII Strong(Policy);
1760 if (
T->getQualifier())
1761 T->getQualifier()->print(OS, Policy);
1762 OS <<
"template " <<
T->getIdentifier()->getName();
1764 spaceBeforePlaceHolder(OS);
1767void TypePrinter::printDependentTemplateSpecializationAfter(
1772 printBefore(
T->getPattern(), OS);
1777 printAfter(
T->getPattern(), OS);
1785 if (
T->isCountInBytes() &&
T->isOrNull())
1786 OS <<
"__sized_by_or_null(";
1787 else if (
T->isCountInBytes())
1788 OS <<
"__sized_by(";
1789 else if (
T->isOrNull())
1790 OS <<
"__counted_by_or_null(";
1792 OS <<
"__counted_by(";
1793 if (
T->getCountExpr())
1794 T->getCountExpr()->printPretty(OS,
nullptr, Policy);
1817 if (
T->getAttrKind() == attr::ObjCGC ||
1818 T->getAttrKind() == attr::ObjCOwnership)
1819 return printBefore(
T->getEquivalentType(), OS);
1821 if (
T->getAttrKind() == attr::ObjCKindOf)
1824 if (
T->getAttrKind() == attr::AddressSpace)
1825 printBefore(
T->getEquivalentType(), OS);
1827 printBefore(
T->getModifiedType(), OS);
1829 if (
T->isMSTypeSpec()) {
1830 switch (
T->getAttrKind()) {
1832 case attr::Ptr32: OS <<
" __ptr32";
break;
1833 case attr::Ptr64: OS <<
" __ptr64";
break;
1834 case attr::SPtr: OS <<
" __sptr";
break;
1835 case attr::UPtr: OS <<
" __uptr";
break;
1837 spaceBeforePlaceHolder(OS);
1840 if (
T->isWebAssemblyFuncrefSpec())
1844 if (
T->getImmediateNullability()) {
1845 if (
T->getAttrKind() == attr::TypeNonNull)
1847 else if (
T->getAttrKind() == attr::TypeNullable)
1849 else if (
T->getAttrKind() == attr::TypeNullUnspecified)
1850 OS <<
" _Null_unspecified";
1851 else if (
T->getAttrKind() == attr::TypeNullableResult)
1852 OS <<
" _Nullable_result";
1854 llvm_unreachable(
"unhandled nullability");
1855 spaceBeforePlaceHolder(OS);
1864 if (
T->getAttrKind() == attr::ObjCGC ||
1865 T->getAttrKind() == attr::ObjCOwnership)
1866 return printAfter(
T->getEquivalentType(), OS);
1870 SaveAndRestore MaybeSuppressCC(InsideCCAttribute,
T->isCallingConv());
1872 printAfter(
T->getModifiedType(), OS);
1876 if (
T->getAttrKind() == attr::ObjCKindOf ||
T->isMSTypeSpec() ||
1877 T->getImmediateNullability() ||
T->isWebAssemblyFuncrefSpec())
1881 if (
T->getAttrKind() == attr::ObjCInertUnsafeUnretained)
1885 if (
T->getAttrKind() == attr::NSReturnsRetained &&
1890 if (
T->getAttrKind() == attr::LifetimeBound) {
1891 OS <<
" [[clang::lifetimebound]]";
1898 if (
T->getAttrKind() == attr::AddressSpace)
1901 if (
T->getAttrKind() == attr::AnnotateType) {
1906 OS <<
" [[clang::annotate_type(...)]]";
1910 if (
T->getAttrKind() == attr::ArmStreaming) {
1911 OS <<
"__arm_streaming";
1914 if (
T->getAttrKind() == attr::ArmStreamingCompatible) {
1915 OS <<
"__arm_streaming_compatible";
1919 OS <<
" __attribute__((";
1920 switch (
T->getAttrKind()) {
1921#define TYPE_ATTR(NAME)
1922#define DECL_OR_TYPE_ATTR(NAME)
1923#define ATTR(NAME) case attr::NAME:
1924#include "clang/Basic/AttrList.inc"
1925 llvm_unreachable(
"non-type attribute attached to type");
1927 case attr::BTFTypeTag:
1928 llvm_unreachable(
"BTFTypeTag attribute handled separately");
1930 case attr::OpenCLPrivateAddressSpace:
1931 case attr::OpenCLGlobalAddressSpace:
1932 case attr::OpenCLGlobalDeviceAddressSpace:
1933 case attr::OpenCLGlobalHostAddressSpace:
1934 case attr::OpenCLLocalAddressSpace:
1935 case attr::OpenCLConstantAddressSpace:
1936 case attr::OpenCLGenericAddressSpace:
1937 case attr::HLSLGroupSharedAddressSpace:
1942 case attr::CountedBy:
1943 case attr::CountedByOrNull:
1945 case attr::SizedByOrNull:
1946 case attr::LifetimeBound:
1947 case attr::TypeNonNull:
1948 case attr::TypeNullable:
1949 case attr::TypeNullableResult:
1950 case attr::TypeNullUnspecified:
1952 case attr::ObjCInertUnsafeUnretained:
1953 case attr::ObjCKindOf:
1954 case attr::ObjCOwnership:
1959 case attr::AddressSpace:
1960 case attr::CmseNSCall:
1961 case attr::AnnotateType:
1962 case attr::WebAssemblyFuncref:
1963 case attr::ArmStreaming:
1964 case attr::ArmStreamingCompatible:
1967 case attr::ArmInOut:
1968 case attr::ArmPreserves:
1969 case attr::NonBlocking:
1970 case attr::NonAllocating:
1971 case attr::Blocking:
1972 case attr::Allocating:
1973 llvm_unreachable(
"This attribute should have been handled already");
1975 case attr::NSReturnsRetained:
1976 OS <<
"ns_returns_retained";
1981 case attr::AnyX86NoCfCheck: OS <<
"nocf_check";
break;
1982 case attr::CDecl: OS <<
"cdecl";
break;
1983 case attr::FastCall: OS <<
"fastcall";
break;
1984 case attr::StdCall: OS <<
"stdcall";
break;
1985 case attr::ThisCall: OS <<
"thiscall";
break;
1986 case attr::SwiftCall: OS <<
"swiftcall";
break;
1987 case attr::SwiftAsyncCall: OS <<
"swiftasynccall";
break;
1988 case attr::VectorCall: OS <<
"vectorcall";
break;
1989 case attr::Pascal: OS <<
"pascal";
break;
1990 case attr::MSABI: OS <<
"ms_abi";
break;
1991 case attr::SysVABI: OS <<
"sysv_abi";
break;
1992 case attr::RegCall: OS <<
"regcall";
break;
1999 "\"aapcs\"" :
"\"aapcs-vfp\"");
2003 case attr::AArch64VectorPcs: OS <<
"aarch64_vector_pcs";
break;
2004 case attr::AArch64SVEPcs: OS <<
"aarch64_sve_pcs";
break;
2005 case attr::AMDGPUKernelCall: OS <<
"amdgpu_kernel";
break;
2006 case attr::IntelOclBicc: OS <<
"inteloclbicc";
break;
2007 case attr::PreserveMost:
2008 OS <<
"preserve_most";
2011 case attr::PreserveAll:
2012 OS <<
"preserve_all";
2017 case attr::PreserveNone:
2018 OS <<
"preserve_none";
2020 case attr::RISCVVectorCC:
2021 OS <<
"riscv_vector_cc";
2026 case attr::AcquireHandle:
2027 OS <<
"acquire_handle";
2029 case attr::ArmMveStrictPolymorphism:
2030 OS <<
"__clang_arm_mve_strict_polymorphism";
2034 case attr::HLSLParamModifier:
2042 printBefore(
T->getWrappedType(), OS);
2043 OS <<
" __attribute__((btf_type_tag(\"" <<
T->getAttr()->getBTFTypeTag() <<
"\")))";
2048 printAfter(
T->getWrappedType(), OS);
2053 OS <<
T->getDecl()->getName();
2054 spaceBeforePlaceHolder(OS);
2062 OS <<
T->getDecl()->getName();
2063 if (!
T->qual_empty()) {
2064 bool isFirst =
true;
2066 for (
const auto *I :
T->quals()) {
2076 spaceBeforePlaceHolder(OS);
2084 if (
T->qual_empty() &&
T->isUnspecializedAsWritten() &&
2085 !
T->isKindOfTypeAsWritten())
2086 return printBefore(
T->getBaseType(), OS);
2088 if (
T->isKindOfTypeAsWritten())
2091 print(
T->getBaseType(), OS, StringRef());
2093 if (
T->isSpecializedAsWritten()) {
2094 bool isFirst =
true;
2096 for (
auto typeArg :
T->getTypeArgsAsWritten()) {
2102 print(typeArg, OS, StringRef());
2107 if (!
T->qual_empty()) {
2108 bool isFirst =
true;
2110 for (
const auto *I :
T->quals()) {
2120 spaceBeforePlaceHolder(OS);
2125 if (
T->qual_empty() &&
T->isUnspecializedAsWritten() &&
2126 !
T->isKindOfTypeAsWritten())
2127 return printAfter(
T->getBaseType(), OS);
2137 if (HasEmptyPlaceHolder)
2154 llvm::raw_ostream &OS,
bool IncludeType) {
2155 A.
print(PP, OS, IncludeType);
2179 if (TTPT->getDepth() == Depth && TTPT->getIndex() < Args.size() &&
2182 Args[TTPT->getIndex()].getAsType(), Pattern.
getQualifiers());
2194 if (TQual != PatQual)
2212 Template = TTST->getTemplateName();
2213 TemplateArgs = TTST->template_arguments();
2214 }
else if (
auto *CTSD = dyn_cast_or_null<ClassTemplateSpecializationDecl>(
2216 Template =
TemplateName(CTSD->getSpecializedTemplate());
2217 TemplateArgs = CTSD->getTemplateArgs().asArray();
2225 if (TemplateArgs.size() != PTST->template_arguments().size())
2227 for (
unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2229 Ctx, TemplateArgs[I], PTST->template_arguments()[I], Args, Depth))
2280 if (
auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()))
2281 return NTTP->getDepth() == Depth && Args.size() > NTTP->getIndex() &&
2282 Args[NTTP->getIndex()].structurallyEquals(Arg);
2298 if (
auto *TTPD = dyn_cast_or_null<TemplateTemplateParmDecl>(PatTD))
2299 return TTPD->getDepth() == Depth && Args.size() > TTPD->getIndex() &&
2316 if (
auto *TTPD = dyn_cast<TemplateTypeParmDecl>(Param)) {
2317 return TTPD->hasDefaultArgument() &&
2319 Ctx, Arg, TTPD->getDefaultArgument().getArgument(), Args, Depth);
2320 }
else if (
auto *TTPD = dyn_cast<TemplateTemplateParmDecl>(Param)) {
2321 return TTPD->hasDefaultArgument() &&
2323 Ctx, Arg, TTPD->getDefaultArgument().getArgument(), Args, Depth);
2324 }
else if (
auto *NTTPD = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
2325 return NTTPD->hasDefaultArgument() &&
2327 Ctx, Arg, NTTPD->getDefaultArgument().getArgument(), Args,
2333template <
typename TA>
2340 Args.size() <= TPL->
size()) {
2342 for (
const TA &A : Args)
2345 Args = Args.drop_back();
2352 bool NeedSpace =
false;
2353 bool FirstArg =
true;
2354 for (
const auto &Arg : Args) {
2357 llvm::raw_svector_ostream ArgOS(Buf);
2370 Policy, TPL, ParmIndex));
2372 StringRef ArgString = ArgOS.str();
2377 if (FirstArg && ArgString.starts_with(
":"))
2384 if (!ArgString.empty()) {
2412 printTo(OS, Args, Policy, TPL,
false, 0);
2419 printTo(OS, Args, Policy, TPL,
false, 0);
2432 llvm::raw_svector_ostream StrOS(Buf);
2433 print(StrOS, Policy);
2434 return std::string(StrOS.str());
2468 return "__constant";
2473 return "__global_device";
2476 return "__global_host";
2478 return "__device__";
2480 return "__constant__";
2482 return "__shared__";
2484 return "__sptr __ptr32";
2486 return "__uptr __ptr32";
2492 return "groupshared";
2502 bool appendSpaceIfNonEmpty)
const {
2503 bool addSpace =
false;
2513 OS <<
"__unaligned";
2517 if (!ASStr.empty()) {
2523 OS <<
"__attribute__((address_space(" << ASStr <<
")))";
2557 if (appendSpaceIfNonEmpty && addSpace)
2579 const Twine &PlaceHolder,
unsigned Indentation)
const {
2586 const Twine &PlaceHolder,
unsigned Indentation) {
2588 StringRef PH = PlaceHolder.toStringRef(PHBuf);
2590 TypePrinter(policy, Indentation).print(ty, qs, OS, PH);
2600 std::string &buffer,
2603 llvm::raw_svector_ostream StrOS(Buf);
2604 TypePrinter(policy).print(ty, qs, StrOS, buffer);
2605 std::string str = std::string(StrOS.str());
2611 TypePrinter(
LangOptions()).print(S.Ty, S.Quals, OS,
"");
Defines the clang::ASTContext interface.
Provides definitions for the various language-specific address spaces.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
Defines the ExceptionSpecificationType enumeration and various utility functions.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
static void print(llvm::raw_ostream &OS, const T &V, ASTContext &ASTCtx, QualType Ty)
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
Defines the clang::SourceLocation class and associated facilities.
Defines the SourceManager interface.
Defines various enumerations that describe declaration and type specifiers.
static void printTo(raw_ostream &OS, ArrayRef< TA > Args, const PrintingPolicy &Policy, const TemplateParameterList *TPL, bool IsPack, unsigned ParmIndex)
static const TemplateArgument & getArgument(const TemplateArgument &A)
static bool isSubstitutedType(ASTContext &Ctx, QualType T, QualType Pattern, ArrayRef< TemplateArgument > Args, unsigned Depth)
static void printArgument(const TemplateArgument &A, const PrintingPolicy &PP, llvm::raw_ostream &OS, bool IncludeType)
static QualType skipTopLevelReferences(QualType T)
static void printCountAttributedImpl(const CountAttributedType *T, raw_ostream &OS, const PrintingPolicy &Policy)
static SplitQualType splitAccordingToPolicy(QualType QT, const PrintingPolicy &Policy)
static bool isSubstitutedTemplateArgument(ASTContext &Ctx, TemplateArgument Arg, TemplateArgument Pattern, ArrayRef< TemplateArgument > Args, unsigned Depth)
static void AppendTypeQualList(raw_ostream &OS, unsigned TypeQuals, bool HasRestrictKeyword)
static bool templateArgumentExpressionsEqual(ASTContext const &Ctx, TemplateArgument const &Pattern, TemplateArgument const &Arg)
Evaluates the expression template argument 'Pattern' and returns true if 'Arg' evaluates to the same ...
C Language Family Type Representation.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
SourceManager & getSourceManager()
TemplateArgument getCanonicalTemplateArgument(const TemplateArgument &Arg) const
Retrieve the "canonical" template argument.
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
QualType getQualifiedType(SplitQualType split) const
Un-split a SplitQualType.
QualType getUnqualifiedArrayType(QualType T, Qualifiers &Quals) const
Return this type as a completely-unqualified array type, capturing the qualifiers in Quals.
Represents a type which was implicitly adjusted by the semantic engine for arbitrary reasons.
Represents a constant array type that does not decay to a pointer when used as a function parameter.
An attributed type is a type to which a type attribute has been applied.
Represents a C++11 auto or C++14 decltype(auto) type, possibly constrained by a type-constraint.
A fixed int type of a specified bitwidth.
This class is used for builtin types like 'int'.
Complex values, per C99 6.2.5p11.
Represents the canonical version of C arrays with a specified constant size.
Represents a concrete matrix type with constant number of rows and columns.
Represents a sugar type with __counted_by or __sized_by annotations, including their _or_null variant...
Represents a pointer type decayed from an array or function type.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool isTranslationUnit() const
bool isFunctionOrMethod() const
ASTContext & getASTContext() const LLVM_READONLY
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
SourceLocation getLocation() const
DeclContext * getDeclContext()
void print(raw_ostream &Out, unsigned Indentation=0, bool PrintInstantiation=false) const
The name of a declaration.
Represents the type decltype(expr) (C++11).
Represents a C++17 deduced template specialization type.
Represents an extended address space qualifier where the input address space value is dependent.
Represents a qualified type name for which the type name is dependent.
Represents an array type in C++ whose size is a value-dependent expression.
Represents an extended vector type where either the type or size is dependent.
Represents a matrix type where the type and the number of rows and columns is dependent on a template...
Represents a template specialization type whose template cannot be resolved, e.g.
Represents a vector type where either the type or size is dependent.
Represents a type that was referred to using an elaborated type keyword, e.g., struct S,...
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of enums.
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
llvm::APSInt EvaluateKnownConstInt(const ASTContext &Ctx, SmallVectorImpl< PartialDiagnosticAt > *Diag=nullptr) const
EvaluateKnownConstInt - Call EvaluateAsRValue and return the folded integer.
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
bool isIntegerConstantExpr(const ASTContext &Ctx, SourceLocation *Loc=nullptr) const
ExtVectorType - Extended vector type.
An immutable set of FunctionEffects and possibly conditions attached to them.
Represents a K&R-style 'int foo()' function, which has no information available about its arguments.
Represents a prototype with parameter type info, e.g.
ExtParameterInfo getExtParameterInfo(unsigned I) const
ExceptionSpecificationType getExceptionSpecType() const
Get the kind of exception specification on this function.
unsigned getNumParams() const
void printExceptionSpecification(raw_ostream &OS, const PrintingPolicy &Policy) const
bool hasTrailingReturn() const
Whether this function prototype has a trailing return type.
Qualifiers getMethodQuals() const
QualType getParamType(unsigned i) const
FunctionEffectsRef getFunctionEffects() const
unsigned getAArch64SMEAttributes() const
Return a bitmask describing the SME attributes on the function type, see AArch64SMETypeAttributes for...
QualType getExceptionType(unsigned i) const
Return the ith exception type, where 0 <= i < getNumExceptions().
unsigned getNumExceptions() const
Return the number of types in the exception specification.
bool hasDynamicExceptionSpec() const
Return whether this function has a dynamic (throw) exception spec.
bool isVariadic() const
Whether this function prototype is variadic.
Expr * getNoexceptExpr() const
Return the expression inside noexcept(expression), or a null pointer if there is none (because the ex...
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this function type.
A class which abstracts out some details necessary for making a call.
CallingConv getCC() const
bool getCmseNSCall() const
bool getNoCfCheck() const
unsigned getRegParm() const
bool getNoCallerSavedRegs() const
bool getProducesResult() const
FunctionType - C99 6.7.5.3 - Function Declarators.
ExtInfo getExtInfo() const
static ArmStateValue getArmZT0State(unsigned AttrBits)
static ArmStateValue getArmZAState(unsigned AttrBits)
QualType getReturnType() const
@ SME_PStateSMEnabledMask
@ SME_PStateSMCompatibleMask
One of these records is kept for each identifier that is lexed.
StringRef getName() const
Return the actual identifier string.
Represents a C array with an unspecified size.
The injected class name of a C++ class template or class template partial specialization.
An lvalue reference type, per C++11 [dcl.ref].
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Sugar type that represents a type that was qualified by a qualifier written as a macro invocation.
A pointer to member type per C++ 8.3.3 - Pointers to members.
This represents a decl that may have a name.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
Interfaces are the core concept in Objective-C for object oriented design.
Represents a pointer to an Objective C object.
Represents a class type in Objective C.
Represents a type parameter type in Objective C.
Represents a pack expansion of types.
Sugar for parentheses used when specifying types.
PointerType - C99 6.7.5.1 - Pointer Declarators.
Represents an unpacked "presumed" location which can be presented to the user.
unsigned getColumn() const
Return the presumed column number of this location.
const char * getFilename() const
Return the presumed filename of this location.
unsigned getLine() const
Return the presumed line number of this location.
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
void print(raw_ostream &OS, const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
void getAsStringInternal(std::string &Str, const PrintingPolicy &Policy) const
QualType getCanonicalType() const
SplitQualType split() const
Divides a QualType into its unqualified type and a set of local qualifiers.
std::string getAsString() const
StreamedQualTypeHelper stream(const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
The collection of all-type qualifiers we support.
unsigned getCVRQualifiers() const
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
@ OCL_ExplicitNone
This object can be modified without requiring retains or releases.
@ OCL_None
There is no lifetime qualification on this type.
@ OCL_Weak
Reading or writing from this object requires a barrier call.
@ OCL_Autoreleasing
Assigning into this object requires a lifetime extension.
bool hasUnaligned() const
void print(raw_ostream &OS, const PrintingPolicy &Policy, bool appendSpaceIfNonEmpty=false) const
bool isEmptyWhenPrinted(const PrintingPolicy &Policy) const
ObjCLifetime getObjCLifetime() const
std::string getAsString() const
LangAS getAddressSpace() const
static std::string getAddrSpaceAsString(LangAS AS)
An rvalue reference type, per C++11 [dcl.ref].
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
Base for LValueReferenceType and RValueReferenceType.
PresumedLoc getPresumedLoc(SourceLocation Loc, bool UseLineDirectives=true) const
Returns the "presumed" location of a SourceLocation specifies.
void printPretty(raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0, StringRef NewlineSymbol="\n", const ASTContext *Context=nullptr) const
Represents the result of substituting a set of types for a template type parameter pack.
Represents the result of substituting a type for a template type parameter.
Represents the declaration of a struct/union/class/enum.
A convenient class for passing around template argument information.
llvm::ArrayRef< TemplateArgumentLoc > arguments() const
A template argument list.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
Location wrapper for a TemplateArgument.
const TemplateArgument & getArgument() const
TypeSourceInfo * getTypeSourceInfo() const
Represents a template argument.
ArrayRef< TemplateArgument > getPackAsArray() const
Return the array of arguments in this template argument pack.
Expr * getAsExpr() const
Retrieve the template argument as an expression.
QualType getAsType() const
Retrieve the type for a type template argument.
llvm::APSInt getAsIntegral() const
Retrieve the template argument as an integral value.
TemplateName getAsTemplate() const
Retrieve the template name for a template name argument.
unsigned pack_size() const
The number of template arguments in the given template argument pack.
bool structurallyEquals(const TemplateArgument &Other) const
Determines whether two template arguments are superficially the same.
void print(const PrintingPolicy &Policy, raw_ostream &Out, bool IncludeType) const
Print this template argument to the given output stream.
bool getIsDefaulted() const
If returns 'true', this TemplateArgument corresponds to a default template parameter.
ArgKind
The kind of template argument we're storing.
@ Template
The template argument is a template name that was provided for a template template parameter.
@ Pack
The template argument is actually a parameter pack.
@ Type
The template argument is a type.
@ Integral
The template argument is an integral value stored in an llvm::APSInt that was provided for an integra...
@ Expression
The template argument is an expression, and we've not resolved it to one of the other forms yet,...
ArgKind getKind() const
Return the kind of stored template argument.
The base class of all kinds of template declarations (e.g., class, function, etc.).
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
Represents a C++ template name within the type system.
TemplateDecl * getAsTemplateDecl() const
Retrieve the underlying template declaration that this template name refers to, if known.
Stores a list of template parameters for a TemplateDecl and its derived classes.
static bool shouldIncludeTypeForArgument(const PrintingPolicy &Policy, const TemplateParameterList *TPL, unsigned Idx)
Represents a type template specialization; the template must be a class template, a type alias templa...
Declaration of a template type parameter.
const Type * getTypeForDecl() const
Represents a typeof (or typeof) expression (a C23 feature and GCC extension) or a typeof_unqual expre...
Represents typeof(type), a C23 feature and GCC extension, or `typeof_unqual(type),...
QualType getType() const
Return the type wrapped by this type source info.
static StringRef getKeywordName(ElaboratedTypeKeyword Keyword)
The base class of the type hierarchy.
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
QualType getLocallyUnqualifiedSingleStepDesugaredType() const
Pull a single level of sugar off of this locally-unqualified type.
const T * castAs() const
Member-template castAs<specific type>.
bool isObjCQualifiedIdType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isObjCIdType() const
bool isSpecifierType() const
Returns true if this type can be represented by some set of type specifiers.
bool isFunctionType() const
bool isObjCQualifiedClassType() const
bool isObjCClassType() const
TypeClass getTypeClass() const
const T * getAs() const
Member-template getAs<specific type>'.
Base class for declarations which introduce a typedef-name.
Represents the dependent type named by a dependently-scoped typename using declaration,...
Represents a C array with a specified size that is not an integer-constant-expression.
Represents a GCC generic vector type.
The JSON file list parser is used to communicate input to InstallAPI.
@ GNUAutoType
__auto_type (GNU extension)
@ DecltypeAuto
decltype(auto)
llvm::StringRef getParameterABISpelling(ParameterABI kind)
bool isTargetAddressSpace(LangAS AS)
@ RQ_None
No ref-qualifier was provided.
@ RQ_LValue
An lvalue ref-qualifier was provided (&).
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
const StreamingDiagnostic & operator<<(const StreamingDiagnostic &DB, const ASTContext::SectionInfo &Section)
Insertion operator for diagnostics.
unsigned toTargetAddressSpace(LangAS AS)
ParameterABI
Kinds of parameter ABI.
@ SwiftAsyncContext
This parameter (which must have pointer type) uses the special Swift asynchronous context-pointer ABI...
@ SwiftErrorResult
This parameter (which must have pointer-to-pointer type) uses the special Swift error-result ABI trea...
@ Ordinary
This parameter uses ordinary ABI rules for its type.
@ SwiftIndirectResult
This parameter (which must have pointer type) is a Swift indirect result parameter.
@ SwiftContext
This parameter (which must have pointer type) uses the special Swift context-pointer ABI treatment.
bool isComputedNoexcept(ExceptionSpecificationType ESpecType)
bool isNoexceptExceptionSpec(ExceptionSpecificationType ESpecType)
LangAS
Defines the address space values used by the address space qualifier of QualType.
bool isSubstitutedDefaultArgument(ASTContext &Ctx, TemplateArgument Arg, const NamedDecl *Param, ArrayRef< TemplateArgument > Args, unsigned Depth)
Make a best-effort determination of whether the type T can be produced by substituting Args into the ...
const FunctionProtoType * T
void printTemplateArgumentList(raw_ostream &OS, ArrayRef< TemplateArgument > Args, const PrintingPolicy &Policy, const TemplateParameterList *TPL=nullptr)
Print a template argument list, including the '<' and '>' enclosing the template arguments.
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
@ None
No keyword precedes the qualified type name.
@ EST_NoThrow
Microsoft __declspec(nothrow) extension.
@ EST_MSAny
Microsoft throw(...) extension.
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
llvm::ArrayRef< TemplateArgumentLoc > arguments() const
Describes how types, statements, expressions, and declarations should be printed.
unsigned MSVCFormatting
Use whitespace and punctuation like MSVC does.
unsigned SuppressDefaultTemplateArgs
When true, attempt to suppress template arguments that match the default argument for the parameter.
unsigned SplitTemplateClosers
Whether nested templates must be closed like 'a<b<c> >' rather than 'a<b<c>>'.
unsigned PrintCanonicalTypes
Whether to print types as written or canonically.
unsigned SuppressSpecifiers
Whether we should suppress printing of the actual specifiers for the given type or declaration.
unsigned SuppressTagKeyword
Whether type printing should skip printing the tag keyword.
unsigned SuppressStrongLifetime
When true, suppress printing of the __strong lifetime qualifier in ARC.
unsigned Restrict
Whether we can use 'restrict' rather than '__restrict'.
unsigned SuppressScope
Suppresses printing of scope specifiers.
unsigned IncludeTagDefinition
When true, include the body of a tag definition.
unsigned SuppressLifetimeQualifiers
When true, suppress printing of lifetime qualifier in ARC.
A std::pair-like structure for storing a qualified type split into its local qualifiers and its local...
const Type * Ty
The locally-unqualified type.
Qualifiers Quals
The local qualifiers.