diff options
author | Scott Linder <scott@scottlinder.com> | 2018-02-26 17:32:31 +0000 |
---|---|---|
committer | Scott Linder <scott@scottlinder.com> | 2018-02-26 17:32:31 +0000 |
commit | a2fbcef8ee7cc4c90cbe2554e36d9cb859965833 (patch) | |
tree | 10e3ac019f5c8338c51d02bcd4024f27bdb95251 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 2a26a286db424050435d1e8e01c39438d927aa06 (diff) | |
download | bcm5719-llvm-a2fbcef8ee7cc4c90cbe2554e36d9cb859965833.tar.gz bcm5719-llvm-a2fbcef8ee7cc4c90cbe2554e36d9cb859965833.zip |
[DebugInfo] Support DWARF v5 source code embedding extension
In DWARF v5 the Line Number Program Header is extensible, allowing values with
new content types. This vendor extension to DWARF v5 allows source text to be
embedded directly in the line tables of the debug line section.
Add new flag (-g[no-]embed-source) to Driver and CC1 which indicates
that source should be passed through to LLVM during CodeGen.
Differential Revision: https://reviews.llvm.org/D42766
llvm-svn: 326102
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 443c550bcb4..4be390b49bc 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -545,6 +545,7 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, Opts.DebugTypeExtRefs = Args.hasArg(OPT_dwarf_ext_refs); Opts.DebugExplicitImport = Args.hasArg(OPT_dwarf_explicit_import); Opts.DebugFwdTemplateParams = Args.hasArg(OPT_debug_forward_template_params); + Opts.EmbedSource = Args.hasArg(OPT_gembed_source); for (const auto &Arg : Args.getAllArgValues(OPT_fdebug_prefix_map_EQ)) Opts.DebugPrefixMap.insert(StringRef(Arg).split('=')); |