Skip to content

Commit

Permalink
[clang] Add missing field to SectionAttr json AST dump
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D157795
  • Loading branch information
serge-sans-paille committed Aug 14, 2023
1 parent 3dadc29 commit 4cf7666
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions clang/include/clang/AST/JSONNodeDumper.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ class JSONNodeDumper
void VisitCleanupAttr(const CleanupAttr *CA);
void VisitDeprecatedAttr(const DeprecatedAttr *DA);
void VisitUnavailableAttr(const UnavailableAttr *UA);
void VisitSectionAttr(const SectionAttr *SA);

void VisitTypedefType(const TypedefType *TT);
void VisitUsingType(const UsingType *TT);
Expand Down
4 changes: 4 additions & 0 deletions clang/lib/AST/JSONNodeDumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,10 @@ void JSONNodeDumper::VisitUnavailableAttr(const UnavailableAttr *UA) {
JOS.attribute("message", UA->getMessage());
}

void JSONNodeDumper::VisitSectionAttr(const SectionAttr *SA) {
JOS.attribute("section_name", SA->getName());
}

void JSONNodeDumper::VisitTypedefType(const TypedefType *TT) {
JOS.attribute("decl", createBareDeclRef(TT->getDecl()));
if (!TT->typeMatchesDecl())
Expand Down
49 changes: 49 additions & 0 deletions clang/test/AST/ast-dump-attr-json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ __attribute__((deprecated("reason", "replacement"))) int deprecated_var2;
__attribute__((unavailable)) int unavailable_var0;
__attribute__((unavailable("reason"))) int unavailable_var1;

__attribute__ ((section ("SECTION_NAME"))) int section_var;

// NOTE: CHECK lines have been autogenerated by gen_ast_dump_json_test.py
// using --filters=VarDecl

Expand Down Expand Up @@ -380,3 +382,50 @@ __attribute__((unavailable("reason"))) int unavailable_var1;
// CHECK-NEXT: }
// CHECK-NEXT: ]
// CHECK-NEXT: }


// CHECK-NOT: {{^}}Dumping
// CHECK: "kind": "VarDecl",
// CHECK-NEXT: "loc": {
// CHECK-NEXT: "offset": 593,
// CHECK-NEXT: "line": 18,
// CHECK-NEXT: "col": 48,
// CHECK-NEXT: "tokLen": 11
// CHECK-NEXT: },
// CHECK-NEXT: "range": {
// CHECK-NEXT: "begin": {
// CHECK-NEXT: "offset": 546,
// CHECK-NEXT: "col": 1,
// CHECK-NEXT: "tokLen": 13
// CHECK-NEXT: },
// CHECK-NEXT: "end": {
// CHECK-NEXT: "offset": 593,
// CHECK-NEXT: "col": 48,
// CHECK-NEXT: "tokLen": 11
// CHECK-NEXT: }
// CHECK-NEXT: },
// CHECK-NEXT: "name": "section_var",
// CHECK-NEXT: "mangledName": "section_var",
// CHECK-NEXT: "type": {
// CHECK-NEXT: "qualType": "int"
// CHECK-NEXT: },
// CHECK-NEXT: "inner": [
// CHECK-NEXT: {
// CHECK-NEXT: "id": "0x{{.*}}",
// CHECK-NEXT: "kind": "SectionAttr",
// CHECK-NEXT: "range": {
// CHECK-NEXT: "begin": {
// CHECK-NEXT: "offset": 562,
// CHECK-NEXT: "col": 17,
// CHECK-NEXT: "tokLen": 7
// CHECK-NEXT: },
// CHECK-NEXT: "end": {
// CHECK-NEXT: "offset": 585,
// CHECK-NEXT: "col": 40,
// CHECK-NEXT: "tokLen": 1
// CHECK-NEXT: }
// CHECK-NEXT: },
// CHECK-NEXT: "section_name": "SECTION_NAME"
// CHECK-NEXT: }
// CHECK-NEXT: ]
// CHECK-NEXT: }

0 comments on commit 4cf7666

Please sign in to comment.