| 1 | //===- PrivateFieldNames.def ------------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file defines a list of non-static data members of the SSAF objects. |
| 10 | // These are used for granting access for: |
| 11 | // - SerializationFormat |
| 12 | // - TestFixture |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #ifndef FIELD |
| 17 | #define FIELD(CLASS, FIELD_NAME) |
| 18 | #endif |
| 19 | |
| 20 | FIELD(BuildNamespace, Kind) |
| 21 | FIELD(BuildNamespace, Name) |
| 22 | FIELD(EntityId, Index) |
| 23 | FIELD(EntityIdTable, Entities) |
| 24 | FIELD(EntityLinkage, Linkage) |
| 25 | FIELD(EntityName, Namespace) |
| 26 | FIELD(EntityName, Suffix) |
| 27 | FIELD(EntityName, USR) |
| 28 | FIELD(LUSummary, TargetTriple) |
| 29 | FIELD(LUSummary, Data) |
| 30 | FIELD(LUSummary, IdTable) |
| 31 | FIELD(LUSummary, LinkageTable) |
| 32 | FIELD(LUSummary, LUNamespace) |
| 33 | FIELD(LUSummaryEncoding, TargetTriple) |
| 34 | FIELD(LUSummaryEncoding, Data) |
| 35 | FIELD(LUSummaryEncoding, IdTable) |
| 36 | FIELD(LUSummaryEncoding, LinkageTable) |
| 37 | FIELD(LUSummaryEncoding, LUNamespace) |
| 38 | FIELD(NestedBuildNamespace, Namespaces) |
| 39 | FIELD(TUSummary, TargetTriple) |
| 40 | FIELD(TUSummary, Data) |
| 41 | FIELD(TUSummary, IdTable) |
| 42 | FIELD(TUSummary, LinkageTable) |
| 43 | FIELD(TUSummary, TUNamespace) |
| 44 | FIELD(TUSummaryEncoding, TargetTriple) |
| 45 | FIELD(TUSummaryEncoding, Data) |
| 46 | FIELD(TUSummaryEncoding, IdTable) |
| 47 | FIELD(TUSummaryEncoding, LinkageTable) |
| 48 | FIELD(TUSummaryEncoding, TUNamespace) |
| 49 | FIELD(WPASuite, Data) |
| 50 | FIELD(WPASuite, IdTable) |
| 51 | |
| 52 | #undef FIELD |
| 53 | |