Skip to content
This repository was archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'llvm/master' into upstream-with-swift
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-ci committed Aug 20, 2019
2 parents 64c0406 + e8307fb commit c1ab123
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 3 deletions.
35 changes: 35 additions & 0 deletions lit/SymbolFile/DWARF/compilercontext.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
; Test finding types by CompilerContext.
; RUN: llc %s -filetype=obj -o %t.o
; RUN: lldb-test symbols %t.o -find=type -compiler-context="Module:CModule,Module:SubModule,Structure:FromSubmodule" | FileCheck %s
;
;
; CHECK: Found 1 types:
; CHECK: struct FromSubmodule {
; CHECK-NEXT: unsigned int x;
; CHECK-NEXT: unsigned int y;
; CHECK-NEXT: unsigned int z;
; CHECK-NEXT: }

source_filename = "/t.c"
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.14.0"

!llvm.dbg.cu = !{!2}
!llvm.linker.options = !{}
!llvm.module.flags = !{!18, !19}
!llvm.ident = !{!22}

; This simulates the debug info for a Clang module.
!2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, nameTableKind: GNU, retainedTypes: !{!11})
!3 = !DIFile(filename: "t.c", directory: "/")
!8 = !DIModule(scope: !9, name: "SubModule", includePath: "", isysroot: "/")
!9 = !DIModule(scope: null, name: "CModule", includePath: "", isysroot: "/")
!11 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "FromSubmodule", scope: !8, file: !3, line: 1, size: 96, elements: !13)
!13 = !{!14, !16, !17}
!14 = !DIDerivedType(tag: DW_TAG_member, name: "x", scope: !11, file: !3, line: 2, baseType: !15, size: 32)
!15 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
!16 = !DIDerivedType(tag: DW_TAG_member, name: "y", scope: !11, file: !3, line: 2, baseType: !15, size: 32, offset: 32)
!17 = !DIDerivedType(tag: DW_TAG_member, name: "z", scope: !11, file: !3, line: 2, baseType: !15, size: 32, offset: 64)
!18 = !{i32 2, !"Dwarf Version", i32 4}
!19 = !{i32 2, !"Debug Info Version", i32 3}
!22 = !{!"clang version 10.0.0 (https://github.com/llvm/llvm-project 056f1b5cc7c2133f0cb3e30e7f24808d321096d7)"}
2 changes: 1 addition & 1 deletion lit/SymbolFile/DWARF/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
config.suffixes = ['.cpp', '.s', '.test']
config.suffixes = ['.cpp', '.s', '.test', '.ll']
53 changes: 51 additions & 2 deletions tools/lldb-test/lldb-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ static cl::opt<std::string>
cl::desc("Restrict search to the context of the given variable."),
cl::value_desc("variable"), cl::sub(SymbolsSubcommand));

static cl::opt<std::string> CompilerContext(
"compiler-context",
cl::desc("Specify a compiler context as \"kind:name,...\"."),
cl::value_desc("context"), cl::sub(SymbolsSubcommand));

static cl::list<FunctionNameType> FunctionNameFlags(
"function-flags", cl::desc("Function search flags:"),
cl::values(clEnumValN(eFunctionNameTypeAuto, "auto",
Expand Down Expand Up @@ -220,6 +225,44 @@ int evaluateMemoryMapCommands(Debugger &Dbg);

} // namespace opts

std::vector<CompilerContext> parseCompilerContext() {
std::vector<CompilerContext> result;
if (opts::symbols::CompilerContext.empty())
return result;

StringRef str{opts::symbols::CompilerContext};
SmallVector<StringRef, 8> entries_str;
str.split(entries_str, ',', /*maxSplit*/-1, /*keepEmpty=*/false);
for (auto entry_str : entries_str) {
StringRef key, value;
std::tie(key, value) = entry_str.split(':');
auto kind =
StringSwitch<CompilerContextKind>(key)
.Case("TranslationUnit", CompilerContextKind::TranslationUnit)
.Case("Module", CompilerContextKind::Module)
.Case("Namespace", CompilerContextKind::Namespace)
.Case("Class", CompilerContextKind::Class)
.Case("Structure", CompilerContextKind::Structure)
.Case("Union", CompilerContextKind::Union)
.Case("Function", CompilerContextKind::Function)
.Case("Variable", CompilerContextKind::Variable)
.Case("Enumeration", CompilerContextKind::Enumeration)
.Case("Typedef", CompilerContextKind::Typedef)
.Default(CompilerContextKind::Invalid);
if (value.empty()) {
WithColor::error() << "compiler context entry has no \"name\"\n";
exit(1);
}
result.push_back({kind, ConstString{value}});
}
outs() << "Search context: {\n";
for (auto entry: result)
entry.Dump();
outs() << "}\n";

return result;
}

template <typename... Args>
static Error make_string_error(const char *Format, Args &&... args) {
return llvm::make_error<llvm::StringError>(
Expand Down Expand Up @@ -464,8 +507,11 @@ Error opts::symbols::findTypes(lldb_private::Module &Module) {

DenseSet<SymbolFile *> SearchedFiles;
TypeMap Map;
Symfile.FindTypes(ConstString(Name), ContextPtr, true, UINT32_MAX,
SearchedFiles, Map);
if (!Name.empty())
Symfile.FindTypes(ConstString(Name), ContextPtr, true, UINT32_MAX,
SearchedFiles, Map);
else
Symfile.FindTypes(parseCompilerContext(), true, Map);

outs() << formatv("Found {0} types:\n", Map.GetSize());
StreamString Stream;
Expand Down Expand Up @@ -679,6 +725,9 @@ Expected<Error (*)(lldb_private::Module &)> opts::symbols::getAction() {
if (Regex || !File.empty() || Line != 0)
return make_string_error("Cannot search for types using regular "
"expressions, file names or line numbers.");
if (!Name.empty() && !CompilerContext.empty())
return make_string_error("Name is ignored if compiler context present.");

return findTypes;

case FindType::Variable:
Expand Down

0 comments on commit c1ab123

Please sign in to comment.