|
18 | 18 | #ifndef SWIFT_SIL_SILVTABLEVISITOR_H
|
19 | 19 | #define SWIFT_SIL_SILVTABLEVISITOR_H
|
20 | 20 |
|
| 21 | +#include <string> |
| 22 | + |
21 | 23 | #include "swift/AST/Decl.h"
|
22 | 24 | #include "swift/AST/Types.h"
|
| 25 | +#include "swift/AST/ASTMangler.h" |
23 | 26 |
|
24 | 27 | namespace swift {
|
25 | 28 |
|
| 29 | +// Utility class for deterministically ordering vtable entries for |
| 30 | +// synthesized methods. |
| 31 | +struct SortedFuncList { |
| 32 | + using Entry = std::pair<std::string, AbstractFunctionDecl *>; |
| 33 | + SmallVector<Entry, 2> elts; |
| 34 | + bool sorted = false; |
| 35 | + |
| 36 | + void add(AbstractFunctionDecl *afd) { |
| 37 | + Mangle::ASTMangler mangler; |
| 38 | + std::string mangledName; |
| 39 | + if (auto *cd = dyn_cast<ConstructorDecl>(afd)) |
| 40 | + mangledName = mangler.mangleConstructorEntity(cd, 0, 0); |
| 41 | + else |
| 42 | + mangledName = mangler.mangleEntity(afd, 0); |
| 43 | + |
| 44 | + elts.push_back(std::make_pair(mangledName, afd)); |
| 45 | + } |
| 46 | + |
| 47 | + bool empty() { return elts.empty(); } |
| 48 | + |
| 49 | + void sort() { |
| 50 | + assert(!sorted); |
| 51 | + sorted = true; |
| 52 | + std::sort(elts.begin(), |
| 53 | + elts.end(), |
| 54 | + [](const Entry &lhs, const Entry &rhs) -> bool { |
| 55 | + return lhs.first < rhs.first; |
| 56 | + }); |
| 57 | + } |
| 58 | + |
| 59 | + decltype(elts)::const_iterator begin() const { |
| 60 | + assert(sorted); |
| 61 | + return elts.begin(); |
| 62 | + } |
| 63 | + |
| 64 | + decltype(elts)::const_iterator end() const { |
| 65 | + assert(sorted); |
| 66 | + return elts.end(); |
| 67 | + } |
| 68 | +}; |
| 69 | + |
26 | 70 | /// A CRTP class for visiting virtually-dispatched methods of a class.
|
27 | 71 | ///
|
28 | 72 | /// You must override these two methods in your subclass:
|
@@ -76,19 +120,47 @@ template <class T> class SILVTableVisitor {
|
76 | 120 | }
|
77 | 121 | }
|
78 | 122 |
|
| 123 | + void maybeAddMember(Decl *member) { |
| 124 | + if (auto *fd = dyn_cast<FuncDecl>(member)) |
| 125 | + maybeAddMethod(fd); |
| 126 | + else if (auto *cd = dyn_cast<ConstructorDecl>(member)) |
| 127 | + maybeAddConstructor(cd); |
| 128 | + else if (auto *placeholder = dyn_cast<MissingMemberDecl>(member)) |
| 129 | + asDerived().addPlaceholder(placeholder); |
| 130 | + } |
| 131 | + |
79 | 132 | protected:
|
80 | 133 | void addVTableEntries(ClassDecl *theClass) {
|
81 | 134 | // Imported classes do not have a vtable.
|
82 | 135 | if (!theClass->hasKnownSwiftImplementation())
|
83 | 136 | return;
|
84 | 137 |
|
| 138 | + // Note that while vtable order is not ABI, we still want it to be |
| 139 | + // consistent between translation units. |
| 140 | + // |
| 141 | + // So, sort synthesized members by their mangled name, since they |
| 142 | + // are added lazily during type checking, with the remaining ones |
| 143 | + // forced at the end. |
| 144 | + SortedFuncList synthesizedMembers; |
| 145 | + |
85 | 146 | for (auto member : theClass->getMembers()) {
|
86 |
| - if (auto *fd = dyn_cast<FuncDecl>(member)) |
87 |
| - maybeAddMethod(fd); |
88 |
| - else if (auto *cd = dyn_cast<ConstructorDecl>(member)) |
89 |
| - maybeAddConstructor(cd); |
90 |
| - else if (auto *placeholder = dyn_cast<MissingMemberDecl>(member)) |
91 |
| - asDerived().addPlaceholder(placeholder); |
| 147 | + if (auto *afd = dyn_cast<AbstractFunctionDecl>(member)) { |
| 148 | + if (afd->isSynthesized()) { |
| 149 | + synthesizedMembers.add(afd); |
| 150 | + continue; |
| 151 | + } |
| 152 | + } |
| 153 | + |
| 154 | + maybeAddMember(member); |
| 155 | + } |
| 156 | + |
| 157 | + if (synthesizedMembers.empty()) |
| 158 | + return; |
| 159 | + |
| 160 | + synthesizedMembers.sort(); |
| 161 | + |
| 162 | + for (const auto &pair : synthesizedMembers) { |
| 163 | + maybeAddMember(pair.second); |
92 | 164 | }
|
93 | 165 | }
|
94 | 166 | };
|
|
0 commit comments