LLVM 19.0.0git
RecordsSlice.cpp
Go to the documentation of this file.
1//===- RecordsSlice.cpp --------------------------------------------------===//
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// Implements the Records Slice APIs.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/ADT/SetVector.h"
16#include "llvm/TextAPI/Record.h"
17#include "llvm/TextAPI/Symbol.h"
18#include <utility>
19
20using namespace llvm;
21using namespace llvm::MachO;
22
25 // Find a specific Record type to capture.
26 auto [APIName, SymKind, InterfaceType] = parseSymbol(Name);
27 Name = APIName;
28 switch (SymKind) {
30 return addGlobal(Name, Linkage, GV, Flags);
32 return addObjCInterface(Name, Linkage, InterfaceType);
34 ObjCInterfaceRecord *Rec = addObjCInterface(Name, Linkage, InterfaceType);
35 // When classes without ehtype are used in try/catch blocks
36 // a weak-defined symbol is exported.
38 updateFlags(Rec, SymbolFlags::WeakDefined);
39 return Rec;
40 }
42 auto [Super, IVar] = Name.split('.');
43 // Attempt to find super class.
44 ObjCContainerRecord *Container = findContainer(/*isIVar=*/false, Super);
45 // If not found, create extension since there is no mapped class symbol.
46 if (Container == nullptr)
47 Container = addObjCCategory(Super, {});
48 return addObjCIVar(Container, IVar, Linkage);
49 }
50 }
51
52 llvm_unreachable("unexpected symbol kind when adding to Record Slice");
53}
54
56 StringRef Name) const {
57 StringRef Super = IsIVar ? Name.split('.').first : Name;
58 ObjCContainerRecord *Container = findObjCInterface(Super);
59 // Ivars can only exist with extensions, if they did not come from
60 // class.
61 if (Container == nullptr)
62 Container = findObjCCategory(Super, "");
63 return Container;
64}
65
66template <typename R, typename C = RecordMap<R>, typename K = StringRef>
67R *findRecord(K Key, const C &Container) {
68 const auto *Record = Container.find(Key);
69 if (Record == Container.end())
70 return nullptr;
71 return Record->second.get();
72}
73
75 GlobalRecord::Kind GV) const {
76 auto *Record = findRecord<GlobalRecord>(Name, Globals);
77 if (!Record)
78 return nullptr;
79
80 switch (GV) {
82 if (!Record->isVariable())
83 return nullptr;
84 break;
85 }
87 if (!Record->isFunction())
88 return nullptr;
89 break;
90 }
92 return Record;
93 }
94
95 return Record;
96}
97
100 assert(CurrType <= ObjCIFSymbolKind::EHType &&
101 "expected single ObjCIFSymbolKind enum value");
102 if (CurrType == ObjCIFSymbolKind::Class)
103 return Linkages.Class;
104
105 if (CurrType == ObjCIFSymbolKind::MetaClass)
106 return Linkages.MetaClass;
107
108 if (CurrType == ObjCIFSymbolKind::EHType)
109 return Linkages.EHType;
110
111 llvm_unreachable("unexpected ObjCIFSymbolKind");
112}
113
115 RecordLinkage Link) {
117 Linkages.Class = std::max(Link, Linkages.Class);
119 Linkages.MetaClass = std::max(Link, Linkages.MetaClass);
121 Linkages.EHType = std::max(Link, Linkages.EHType);
122
123 // Obj-C Classes represent multiple symbols that could have competing
124 // linkages, in this case assign the largest one, when querying the linkage of
125 // the record itself. This allows visitors pick whether they want to account
126 // for complete symbol information.
127 Linkage =
128 std::max(Linkages.Class, std::max(Linkages.MetaClass, Linkages.EHType));
129}
130
132 return findRecord<ObjCInterfaceRecord>(Name, Classes);
133}
134
136 StringRef Category) const {
137 return findRecord<ObjCCategoryRecord>(std::make_pair(ClassToExtend, Category),
138 Categories);
139}
140
142 return findRecord<ObjCIVarRecord>(IVar, IVars);
143}
144
146 StringRef Name) const {
147 // If scoped name, the name of the container is known.
148 if (IsScopedName) {
149 // IVar does not exist if there is not a container assigned to it.
150 auto *Container = findContainer(/*IsIVar=*/true, Name);
151 if (!Container)
152 return nullptr;
153
154 StringRef IVar = Name.substr(Name.find_first_of('.') + 1);
155 return Container->findObjCIVar(IVar);
156 }
157
158 // Otherwise traverse through containers and attempt to find IVar.
159 auto getIVar = [Name](auto &Records) -> ObjCIVarRecord * {
160 for (const auto &[_, Container] : Records) {
161 if (auto *IVarR = Container->findObjCIVar(Name))
162 return IVarR;
163 }
164 return nullptr;
165 };
166
167 if (auto *IVarRecord = getIVar(Classes))
168 return IVarRecord;
169
170 return getIVar(Categories);
171}
172
175 bool Inlined) {
177 Flags |= SymbolFlags::Text;
178 else if (GV == GlobalRecord::Kind::Variable)
179 Flags |= SymbolFlags::Data;
180
182 auto Result = Globals.insert({Name, nullptr});
183 if (Result.second)
184 Result.first->second =
185 std::make_unique<GlobalRecord>(Name, Linkage, Flags, GV, Inlined);
186 else {
187 updateLinkage(Result.first->second.get(), Linkage);
188 updateFlags(Result.first->second.get(), Flags);
189 }
190 return Result.first->second.get();
191}
192
194 RecordLinkage Linkage,
195 ObjCIFSymbolKind SymType) {
197 auto Result = Classes.insert({Name, nullptr});
198 if (Result.second)
199 Result.first->second =
200 std::make_unique<ObjCInterfaceRecord>(Name, Linkage, SymType);
201 else
202 Result.first->second->updateLinkageForSymbols(SymType, Linkage);
203 return Result.first->second.get();
204}
205
206SymbolFlags Record::mergeFlags(SymbolFlags Flags, RecordLinkage Linkage) {
207 // Add Linkage properties into Flags.
208 switch (Linkage) {
211 return Flags;
214 return Flags;
215 default:
216 return Flags;
217 }
218}
219
221 auto Result = Categories.insert({Name, Record});
222 return Result.second;
223}
224
226 StringRef Category) {
227 Category = copyString(Category);
228 ClassToExtend = copyString(ClassToExtend);
229
230 // Add owning record first into record slice.
231 auto Result =
232 Categories.insert({std::make_pair(ClassToExtend, Category), nullptr});
233 if (Result.second)
234 Result.first->second =
235 std::make_unique<ObjCCategoryRecord>(ClassToExtend, Category);
236
237 // Then add reference to it in in the class.
238 if (auto *ObjCClass = findObjCInterface(ClassToExtend))
239 ObjCClass->addObjCCategory(Result.first->second.get());
240
241 return Result.first->second.get();
242}
243
244std::vector<ObjCIVarRecord *> ObjCContainerRecord::getObjCIVars() const {
245 std::vector<ObjCIVarRecord *> Records;
246 llvm::for_each(IVars,
247 [&](auto &Record) { Records.push_back(Record.second.get()); });
248 return Records;
249}
250
251std::vector<ObjCCategoryRecord *>
253 std::vector<ObjCCategoryRecord *> Records;
254 llvm::for_each(Categories,
255 [&](auto &Record) { Records.push_back(Record.second); });
256 return Records;
257}
258
260 RecordLinkage Linkage) {
261 auto Result = IVars.insert({IVar, nullptr});
262 if (Result.second)
263 Result.first->second = std::make_unique<ObjCIVarRecord>(IVar, Linkage);
264 return Result.first->second.get();
265}
266
269 RecordLinkage Linkage) {
271 ObjCIVarRecord *Record = Container->addObjCIVar(Name, Linkage);
272 updateLinkage(Record, Linkage);
273 return Record;
274}
275
277 if (String.empty())
278 return {};
279
280 if (StringAllocator.identifyObject(String.data()))
281 return String;
282
283 void *Ptr = StringAllocator.Allocate(String.size(), 1);
284 memcpy(Ptr, String.data(), String.size());
285 return StringRef(reinterpret_cast<const char *>(Ptr), String.size());
286}
287
289 if (!hasBinaryAttrs())
290 BA = std::make_unique<BinaryAttrs>();
291 return *BA;
292}
293
295 for (auto &G : Globals)
296 V.visitGlobal(*G.second);
297 for (auto &C : Classes)
298 V.visitObjCInterface(*C.second);
299 for (auto &Cat : Categories)
300 V.visitObjCCategory(*Cat.second);
301}
302
303static std::unique_ptr<InterfaceFile>
304createInterfaceFile(const Records &Slices, StringRef InstallName) {
305 // Pickup symbols first.
306 auto Symbols = std::make_unique<SymbolSet>();
307 for (auto &S : Slices) {
308 if (S->empty())
309 continue;
310 auto &BA = S->getBinaryAttrs();
311 if (BA.InstallName != InstallName)
312 continue;
313
314 SymbolConverter Converter(Symbols.get(), S->getTarget(),
315 !BA.TwoLevelNamespace);
316 S->visit(Converter);
317 }
318
319 auto File = std::make_unique<InterfaceFile>(std::move(Symbols));
320 File->setInstallName(InstallName);
321 // Assign other attributes.
322 for (auto &S : Slices) {
323 if (S->empty())
324 continue;
325 auto &BA = S->getBinaryAttrs();
326 if (BA.InstallName != InstallName)
327 continue;
328 const Target &Targ = S->getTarget();
329 File->addTarget(Targ);
330 File->setFromBinaryAttrs(BA, Targ);
331 }
332
333 return File;
334}
335
336std::unique_ptr<InterfaceFile>
338 std::unique_ptr<InterfaceFile> File;
339 if (Slices.empty())
340 return File;
341
342 SetVector<StringRef> InstallNames;
343 for (auto &S : Slices) {
344 auto Name = S->getBinaryAttrs().InstallName;
345 if (Name.empty())
346 continue;
347 InstallNames.insert(Name);
348 }
349
350 File = createInterfaceFile(Slices, *InstallNames.begin());
351 for (StringRef IN : llvm::drop_begin(InstallNames))
352 File->addDocument(createInterfaceFile(Slices, IN));
353
354 return File;
355}
std::string Name
Early If Converter
#define _
#define G(x, y, z)
Definition: MD5.cpp:56
static std::unique_ptr< InterfaceFile > createInterfaceFile(const Records &Slices, StringRef InstallName)
R * findRecord(K Key, const C &Container)
Implements the TAPI Record Collection Type.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements a set that has insertion order iteration characteristics.
Implements the TAPI Record Types.
std::optional< int64_t > identifyObject(const void *Ptr)
Definition: Allocator.h:232
LLVM_ATTRIBUTE_RETURNS_NONNULL void * Allocate(size_t Size, Align Alignment)
Allocate space at the specified alignment.
Definition: Allocator.h:148
ObjCIVarRecord * addObjCIVar(StringRef IVar, RecordLinkage Linkage)
ObjCIVarRecord * findObjCIVar(StringRef IVar) const
std::vector< ObjCIVarRecord * > getObjCIVars() const
RecordLinkage getLinkageForSymbol(ObjCIFSymbolKind CurrType) const
std::vector< ObjCCategoryRecord * > getObjCCategories() const
bool addObjCCategory(ObjCCategoryRecord *Record)
void updateLinkageForSymbols(ObjCIFSymbolKind SymType, RecordLinkage Link)
Base class for any usage of traversing over collected Records.
Definition: RecordVisitor.h:23
Define Record.
Definition: Record.h:67
RecordLinkage Linkage
Definition: Record.h:111
StringRef Name
Definition: Record.h:110
SymbolFlags Flags
Definition: Record.h:112
StringRef copyString(StringRef String)
Store any strings owned by RecordSlice into allocator and return back reference to that.
ObjCIVarRecord * findObjCIVar(bool IsScopedName, StringRef Name) const
Find ObjC instance variable.
ObjCCategoryRecord * addObjCCategory(StringRef ClassToExtend, StringRef Category)
Add ObjC Category record.
ObjCInterfaceRecord * addObjCInterface(StringRef Name, RecordLinkage Linkage, ObjCIFSymbolKind SymType)
Add ObjC Class record.
ObjCContainerRecord * findContainer(bool IsIVar, StringRef Name) const
Find ObjC Container.
ObjCIVarRecord * addObjCIVar(ObjCContainerRecord *Container, StringRef Name, RecordLinkage Linkage)
Add ObjC IVar record.
GlobalRecord * addGlobal(StringRef Name, RecordLinkage Linkage, GlobalRecord::Kind GV, SymbolFlags Flags=SymbolFlags::None, bool Inlined=false)
Add non-ObjC global record.
GlobalRecord * findGlobal(StringRef Name, GlobalRecord::Kind GV=GlobalRecord::Kind::Unknown) const
Find non-objc global.
ObjCCategoryRecord * findObjCCategory(StringRef ClassToExtend, StringRef Category) const
Find ObjC Category.
BinaryAttrs & getBinaryAttrs()
Return reference to BinaryAttrs.
ObjCInterfaceRecord * findObjCInterface(StringRef Name) const
Find ObjC Class.
Record * addRecord(StringRef Name, SymbolFlags Flags, GlobalRecord::Kind GV=GlobalRecord::Kind::Unknown, RecordLinkage Linkage=RecordLinkage::Unknown)
Add unspecified record to slice.
void visit(RecordVisitor &V) const
Specialized RecordVisitor for collecting exported symbols and undefined symbols if RecordSlice being ...
Definition: RecordVisitor.h:35
A vector that has set insertion semantics.
Definition: SetVector.h:57
iterator begin()
Get an iterator to the beginning of the SetVector.
Definition: SetVector.h:103
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition: SetVector.h:162
bool empty() const
Definition: SmallVector.h:94
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Target - Wrapper for Target specific information.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
RecordLinkage
Definition: Record.h:48
std::unique_ptr< InterfaceFile > convertToInterfaceFile(const Records &Slices)
ObjCIFSymbolKind
ObjC Interface symbol mappings.
Definition: Symbol.h:69
@ EHType
Is OBJC_EHTYPE* symbol.
@ Class
Is OBJC_CLASS* symbol.
@ MetaClass
Is OBJC_METACLASS* symbol.
SimpleSymbol parseSymbol(StringRef SymName)
Get symbol classification by parsing the name of a symbol.
Definition: Symbol.cpp:75
llvm::SmallVector< std::shared_ptr< RecordsSlice >, 4 > Records
Definition: RecordsSlice.h:197
SymbolFlags
Symbol flags.
Definition: Symbol.h:24
@ WeakDefined
Weak defined symbol.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition: STLExtras.h:329
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1715