llvm-project/llvm/lib/TextAPI/SymbolSet.cpp
Cyndy Ishida 0882c70df2 [TextAPI] Introduce SymbolSet
SymbolSet is a structure that acts as a simple container class for exported symbols that
belong to a library interface. It allows tapi to decouple the globals
from the other library attributes. It's uniqued by symbol name and `kind`, which all contain their assigned target triples.

Reviewed By: zixuw

Differential Revision: https://reviews.llvm.org/D149860
2023-07-24 12:01:25 -07:00

37 lines
1.2 KiB
C++

//===- lib/TextAPI/SymbolSet.cpp - TAPI Symbol Set ------------*- C++-*----===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/TextAPI/SymbolSet.h"
using namespace llvm;
using namespace llvm::MachO;
Symbol *SymbolSet::addGlobalImpl(SymbolKind Kind, StringRef Name,
SymbolFlags Flags) {
Name = copyString(Name);
auto Result = Symbols.try_emplace(SymbolsMapKey{Kind, Name}, nullptr);
if (Result.second)
Result.first->second =
new (Allocator) Symbol{Kind, Name, TargetList(), Flags};
return Result.first->second;
}
Symbol *SymbolSet::addGlobal(SymbolKind Kind, StringRef Name, SymbolFlags Flags,
const Target &Targ) {
auto *Sym = addGlobalImpl(Kind, Name, Flags);
Sym->addTarget(Targ);
return Sym;
}
const Symbol *SymbolSet::findSymbol(SymbolKind Kind, StringRef Name) const {
auto It = Symbols.find({Kind, Name});
if (It != Symbols.end())
return It->second;
return nullptr;
}