1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
//===--- InterfaceStubFunctionsConsumer.cpp -------------------------------===//
//
// 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 "clang/AST/Mangle.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Sema/TemplateInstCallback.h"
#include "llvm/BinaryFormat/ELF.h"
using namespace clang;
namespace {
class InterfaceStubFunctionsConsumer : public ASTConsumer {
CompilerInstance &Instance;
StringRef InFile;
StringRef Format;
std::set<std::string> ParsedTemplates;
enum RootDeclOrigin { TopLevel = 0, FromTU = 1, IsLate = 2 };
struct MangledSymbol {
std::string ParentName;
uint8_t Type;
uint8_t Binding;
std::vector<std::string> Names;
MangledSymbol() = delete;
MangledSymbol(const std::string &ParentName, uint8_t Type, uint8_t Binding,
std::vector<std::string> Names)
: ParentName(ParentName), Type(Type), Binding(Binding), Names(Names) {}
};
using MangledSymbols = std::map<const NamedDecl *, MangledSymbol>;
bool WriteNamedDecl(const NamedDecl *ND, MangledSymbols &Symbols, int RDO) {
// Here we filter out anything that's not set to DefaultVisibility.
// DefaultVisibility is set on a decl when -fvisibility is not specified on
// the command line (or specified as default) and the decl does not have
// __attribute__((visibility("hidden"))) set or when the command line
// argument is set to hidden but the decl explicitly has
// __attribute__((visibility ("default"))) set. We do this so that the user
// can have fine grain control of what they want to expose in the stub.
auto isVisible = [](const NamedDecl *ND) -> bool {
return ND->getVisibility() == DefaultVisibility;
};
auto ignoreDecl = [this, isVisible](const NamedDecl *ND) -> bool {
if (!isVisible(ND))
return true;
if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
if (const auto *Parent = VD->getParentFunctionOrMethod())
if (isa<BlockDecl>(Parent) || isa<CXXMethodDecl>(Parent))
return true;
if ((VD->getStorageClass() == StorageClass::SC_Extern) ||
(VD->getStorageClass() == StorageClass::SC_Static &&
VD->getParentFunctionOrMethod() == nullptr))
return true;
}
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
if (FD->isInlined() && !isa<CXXMethodDecl>(FD) &&
!Instance.getLangOpts().GNUInline)
return true;
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
if (const auto *RC = dyn_cast<CXXRecordDecl>(MD->getParent()))
if (isa<ClassTemplateDecl>(RC->getParent()) || !isVisible(RC))
return true;
if (MD->isDependentContext() || !MD->hasBody())
return true;
}
if (FD->getStorageClass() == StorageClass::SC_Static)
return true;
}
return false;
};
auto getParentFunctionDecl = [](const NamedDecl *ND) -> const NamedDecl * {
if (const VarDecl *VD = dyn_cast<VarDecl>(ND))
if (const auto *FD =
dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod()))
return FD;
return nullptr;
};
auto getMangledNames = [](const NamedDecl *ND) -> std::vector<std::string> {
if (!ND)
return {""};
ASTNameGenerator NameGen(ND->getASTContext());
std::vector<std::string> MangledNames = NameGen.getAllManglings(ND);
if (isa<CXXConstructorDecl>(ND) || isa<CXXDestructorDecl>(ND))
return MangledNames;
#ifdef EXPENSIVE_CHECKS
assert(MangledNames.size() <= 1 && "Expected only one name mangling.");
#endif
return {NameGen.getName(ND)};
};
if (!(RDO & FromTU))
return true;
if (Symbols.find(ND) != Symbols.end())
return true;
// - Currently have not figured out how to produce the names for FieldDecls.
// - Do not want to produce symbols for function paremeters.
if (isa<FieldDecl>(ND) || isa<ParmVarDecl>(ND))
return true;
const NamedDecl *ParentDecl = getParentFunctionDecl(ND);
if ((ParentDecl && ignoreDecl(ParentDecl)) || ignoreDecl(ND))
return true;
if (RDO & IsLate) {
Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
<< "Generating Interface Stubs is not supported with "
"delayed template parsing.";
} else {
if (const auto *FD = dyn_cast<FunctionDecl>(ND))
if (FD->isDependentContext())
return true;
const bool IsWeak = (ND->hasAttr<WeakAttr>() ||
ND->hasAttr<WeakRefAttr>() || ND->isWeakImported());
Symbols.insert(std::make_pair(
ND,
MangledSymbol(getMangledNames(ParentDecl).front(),
// Type:
isa<VarDecl>(ND) ? llvm::ELF::STT_OBJECT
: llvm::ELF::STT_FUNC,
// Binding:
IsWeak ? llvm::ELF::STB_WEAK : llvm::ELF::STB_GLOBAL,
getMangledNames(ND))));
}
return true;
}
void
HandleDecls(const llvm::iterator_range<DeclContext::decl_iterator> &Decls,
MangledSymbols &Symbols, int RDO) {
for (const auto *D : Decls)
HandleNamedDecl(dyn_cast<NamedDecl>(D), Symbols, RDO);
}
void HandleTemplateSpecializations(const FunctionTemplateDecl &FTD,
MangledSymbols &Symbols, int RDO) {
for (const auto *D : FTD.specializations())
HandleNamedDecl(dyn_cast<NamedDecl>(D), Symbols, RDO);
}
void HandleTemplateSpecializations(const ClassTemplateDecl &CTD,
MangledSymbols &Symbols, int RDO) {
for (const auto *D : CTD.specializations())
HandleNamedDecl(dyn_cast<NamedDecl>(D), Symbols, RDO);
}
bool HandleNamedDecl(const NamedDecl *ND, MangledSymbols &Symbols, int RDO) {
if (!ND)
return false;
switch (ND->getKind()) {
default:
break;
case Decl::Kind::Namespace:
HandleDecls(cast<NamespaceDecl>(ND)->decls(), Symbols, RDO);
return true;
case Decl::Kind::CXXRecord:
HandleDecls(cast<CXXRecordDecl>(ND)->decls(), Symbols, RDO);
return true;
case Decl::Kind::ClassTemplateSpecialization:
HandleDecls(cast<ClassTemplateSpecializationDecl>(ND)->decls(), Symbols,
RDO);
return true;
case Decl::Kind::ClassTemplate:
HandleTemplateSpecializations(*cast<ClassTemplateDecl>(ND), Symbols, RDO);
return true;
case Decl::Kind::FunctionTemplate:
HandleTemplateSpecializations(*cast<FunctionTemplateDecl>(ND), Symbols,
RDO);
return true;
case Decl::Kind::Record:
case Decl::Kind::Typedef:
case Decl::Kind::Enum:
case Decl::Kind::EnumConstant:
case Decl::Kind::TemplateTypeParm:
case Decl::Kind::NonTypeTemplateParm:
case Decl::Kind::CXXConversion:
case Decl::Kind::UnresolvedUsingValue:
case Decl::Kind::Using:
case Decl::Kind::UsingShadow:
case Decl::Kind::TypeAliasTemplate:
case Decl::Kind::TypeAlias:
case Decl::Kind::VarTemplate:
case Decl::Kind::VarTemplateSpecialization:
case Decl::Kind::UsingDirective:
case Decl::Kind::TemplateTemplateParm:
case Decl::Kind::ClassTemplatePartialSpecialization:
case Decl::Kind::IndirectField:
case Decl::Kind::ConstructorUsingShadow:
case Decl::Kind::CXXDeductionGuide:
case Decl::Kind::NamespaceAlias:
case Decl::Kind::UnresolvedUsingTypename:
return true;
case Decl::Kind::Var: {
// Bail on any VarDecl that either has no named symbol.
if (!ND->getIdentifier())
return true;
const auto *VD = cast<VarDecl>(ND);
// Bail on any VarDecl that is a dependent or templated type.
if (VD->isTemplated() || VD->getType()->isDependentType())
return true;
if (WriteNamedDecl(ND, Symbols, RDO))
return true;
break;
}
case Decl::Kind::ParmVar:
case Decl::Kind::CXXMethod:
case Decl::Kind::CXXConstructor:
case Decl::Kind::CXXDestructor:
case Decl::Kind::Function:
case Decl::Kind::Field:
if (WriteNamedDecl(ND, Symbols, RDO))
return true;
}
// While interface stubs are in the development stage, it's probably best to
// catch anything that's not a VarDecl or Template/FunctionDecl.
Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
<< "Expected a function or function template decl.";
return false;
}
public:
InterfaceStubFunctionsConsumer(CompilerInstance &Instance, StringRef InFile,
StringRef Format)
: Instance(Instance), InFile(InFile), Format(Format) {}
void HandleTranslationUnit(ASTContext &context) override {
struct Visitor : public RecursiveASTVisitor<Visitor> {
bool VisitNamedDecl(NamedDecl *ND) {
if (const auto *FD = dyn_cast<FunctionDecl>(ND))
if (FD->isLateTemplateParsed()) {
LateParsedDecls.insert(FD);
return true;
}
if (const auto *VD = dyn_cast<ValueDecl>(ND)) {
ValueDecls.insert(VD);
return true;
}
NamedDecls.insert(ND);
return true;
}
std::set<const NamedDecl *> LateParsedDecls;
std::set<NamedDecl *> NamedDecls;
std::set<const ValueDecl *> ValueDecls;
} v;
v.TraverseDecl(context.getTranslationUnitDecl());
MangledSymbols Symbols;
auto OS = Instance.createDefaultOutputFile(/*Binary=*/false, InFile, "ifs");
if (!OS)
return;
if (Instance.getLangOpts().DelayedTemplateParsing) {
clang::Sema &S = Instance.getSema();
for (const auto *FD : v.LateParsedDecls) {
clang::LateParsedTemplate &LPT =
*S.LateParsedTemplateMap.find(cast<FunctionDecl>(FD))->second;
S.LateTemplateParser(S.OpaqueParser, LPT);
HandleNamedDecl(FD, Symbols, (FromTU | IsLate));
}
}
for (const NamedDecl *ND : v.ValueDecls)
HandleNamedDecl(ND, Symbols, FromTU);
for (const NamedDecl *ND : v.NamedDecls)
HandleNamedDecl(ND, Symbols, FromTU);
auto writeIfsV1 = [this](const llvm::Triple &T,
const MangledSymbols &Symbols,
const ASTContext &context, StringRef Format,
raw_ostream &OS) -> void {
OS << "--- !" << Format << "\n";
OS << "IfsVersion: 3.0\n";
OS << "Target: " << T.str() << "\n";
OS << "Symbols:\n";
for (const auto &E : Symbols) {
const MangledSymbol &Symbol = E.second;
for (auto Name : Symbol.Names) {
OS << " - { Name: \""
<< (Symbol.ParentName.empty() || Instance.getLangOpts().CPlusPlus
? ""
: (Symbol.ParentName + "."))
<< Name << "\", Type: ";
switch (Symbol.Type) {
default:
llvm_unreachable(
"clang -emit-interface-stubs: Unexpected symbol type.");
case llvm::ELF::STT_NOTYPE:
OS << "NoType";
break;
case llvm::ELF::STT_OBJECT: {
auto VD = cast<ValueDecl>(E.first)->getType();
OS << "Object, Size: "
<< context.getTypeSizeInChars(VD).getQuantity();
break;
}
case llvm::ELF::STT_FUNC:
OS << "Func";
break;
}
if (Symbol.Binding == llvm::ELF::STB_WEAK)
OS << ", Weak: true";
OS << " }\n";
}
}
OS << "...\n";
OS.flush();
};
assert(Format == "ifs-v1" && "Unexpected IFS Format.");
writeIfsV1(Instance.getTarget().getTriple(), Symbols, context, Format, *OS);
}
};
} // namespace
std::unique_ptr<ASTConsumer>
GenerateInterfaceStubsAction::CreateASTConsumer(CompilerInstance &CI,
StringRef InFile) {
return std::make_unique<InterfaceStubFunctionsConsumer>(CI, InFile, "ifs-v1");
}
|