<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:宋体;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@宋体";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
        {mso-style-priority:99;
        mso-style-link:"Plain Text Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
code
        {mso-style-priority:99;
        font-family:"Courier New";}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
p.msonormal0, li.msonormal0, div.msonormal0
        {mso-style-name:msonormal;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
span.PlainTextChar
        {mso-style-name:"Plain Text Char";
        mso-style-priority:99;
        mso-style-link:"Plain Text";
        font-family:"Calibri",sans-serif;}
span.EmailStyle21
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 129.75pt 72.0pt 129.7pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">I checked the LLVM master code and find that the “-use-unknown-locations” option and its related logic is only supported for Dwarf debug info as below. These codes are missing in the Codeview side. It looks the “-use-unknown-locations”
 option logic is not complex, could we port the code logic into llvm\lib\CodeGen\AsmPrinter\CodeViewDebug.cpp as well? I’ve submitted a BZ for this requirment:
<a href="https://bugs.llvm.org/show_bug.cgi?id=44522">https://bugs.llvm.org/show_bug.cgi?id=44522</a>
<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><o:p> </o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">llvm-project\llvm\lib\CodeGen\AsmPrinter\DwarfDebug.cpp :<o:p></o:p></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">static cl::opt<DefaultOnOff> UnknownLocations(<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    "use-unknown-locations", cl::Hidden,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    cl::desc("Make an absence of debug location information explicit."),<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    cl::values(clEnumVal(Default, "At top of block or after label"),<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">               clEnumVal(Enable, "In all cases"), clEnumVal(Disable, "Never")),<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    cl::init(Default));<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">... ...
<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    // If user said Don't Do That, don't do that.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">    if (UnknownLocations == Disable)<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">      return;<o:p></o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">This issue blocks the LLVM toolchain debugging capability for UEFI firmware. Please help to add the support. Thank you in advance!<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoPlainText">Thanks<o:p></o:p></p>
<p class="MsoPlainText">Steven Shi<b><span style="font-size:12.0pt;font-family:"Arial",sans-serif"><o:p></o:p></span></b></p>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div style="border:none;border-left:solid blue 1.5pt;padding:0cm 0cm 0cm 4.0pt">
<div>
<div style="border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0cm 0cm 0cm">
<p class="MsoNormal"><a name="_____replyseparator"></a><b>From:</b> Shi, Steven <br>
<b>Sent:</b> Friday, January 10, 2020 9:43 AM<br>
<b>To:</b> Martin Storsjö <martin@martin.st>; David Blaikie <dblaikie@gmail.com><br>
<b>Cc:</b> Reid Kleckner <rnk@google.com>; llvm-dev <llvm-dev@lists.llvm.org>; Rui Ueyama <ruiu@google.com><br>
<b>Subject:</b> RE: [llvm-dev] LLD PDB Lines zero number issue<o:p></o:p></p>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoPlainText">Hi Martin,<o:p></o:p></p>
<p class="MsoPlainText">I tried your suggestion of adding "-mllvm -use-unknown-locations=Disable" in the clang CC flag to build test case in my previous email, but it looks still not work in my side with llvm 9.0.0.  Could you give me some more advices? Do
 I need to use the master LLVM instead of the 9.0.0?<o:p></o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText">$ make -f makefile_clanglto_Oz                                          
<o:p></o:p></p>
<p class="MsoPlainText">"/home/jshi19/llvm/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/clang" -g  -m64 -mcmodel=small -target x86_64-unknown-windows -gcodeview
<span style="color:red">-mllvm -use-unknown-locations=Disable </span>-flto -Oz -c -o main.obj  main.c<o:p></o:p></p>
<p class="MsoPlainText">"nasm" -f win64 -o assembly.obj assembly.nasm<o:p></o:p></p>
<p class="MsoPlainText">"/home/jshi19/llvm/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/llvm-lib" /OUT:main.lib main.obj<o:p></o:p></p>
<p class="MsoPlainText">"/home/jshi19/llvm/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/llvm-lib" /OUT:assembly.lib assembly.obj<o:p></o:p></p>
<p class="MsoPlainText">"/home/jshi19/llvm/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/lld-link" /OUT:main.dll /Machine:X64 /DLL /ENTRY:main /DEBUG:GHASH /lldmap main.lib assembly.lib<o:p></o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText">$ /home/jshi19/llvm/clang+llvm-9.0.0-x86_64-linux-gnu-ubuntu-18.04/bin/llvm-pdbutil dump -l main.pdb<o:p></o:p></p>
<p class="MsoPlainText">                           Lines<o:p></o:p></p>
<p class="MsoPlainText">============================================================<o:p></o:p></p>
<p class="MsoPlainText">Mod 0000 | `assembly.obj`:<o:p></o:p></p>
<p class="MsoPlainText">Mod 0001 | `/home/jshi19/llvm/wrongcode/lld-link5/lto.tmp`:<o:p></o:p></p>
<p class="MsoPlainText">/home/jshi19/llvm/wrongcode/lld-link5/main.c (MD5: 5F82BB79FE2DA0B0549B784CFDC37D05)<o:p></o:p></p>
<p class="MsoPlainText">  0001:00000004-0000001E, line/addr entries = 5<o:p></o:p></p>
<p class="MsoPlainText">     3 00000004 !    <span style="color:red">0 00000008 !
</span>   5 0000000D !    <span style="color:red">0 00000012 !    </span>9 00000017 !<o:p></o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText">Thanks<o:p></o:p></p>
<p class="MsoPlainText">Steven Shi<o:p></o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText"><o:p> </o:p></p>
<p class="MsoPlainText">> -----Original Message-----<o:p></o:p></p>
<p class="MsoPlainText">> From: Martin Storsjö <<a href="mailto:martin@martin.st">martin@martin.st</a>><o:p></o:p></p>
<p class="MsoPlainText">> Sent: Friday, January 10, 2020 5:00 AM<o:p></o:p></p>
<p class="MsoPlainText">> To: David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>><o:p></o:p></p>
<p class="MsoPlainText">> Cc: Shi, Steven <<a href="mailto:steven.shi@intel.com">steven.shi@intel.com</a>>; Reid Kleckner <<a href="mailto:rnk@google.com">rnk@google.com</a>>;<o:p></o:p></p>
<p class="MsoPlainText">> llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><o:p></o:p></p>
<p class="MsoPlainText">> Subject: Re: [llvm-dev] LLD PDB Lines zero number issue<o:p></o:p></p>
<p class="MsoPlainText">> <o:p></o:p></p>
<p class="MsoPlainText">> On Thu, 9 Jan 2020, David Blaikie via llvm-dev wrote:<o:p></o:p></p>
<p class="MsoPlainText">> <o:p></o:p></p>
<p class="MsoPlainText">> > +rnk who works on COFF debugging things.<o:p></o:p></p>
<p class="MsoPlainText">> ><o:p></o:p></p>
<p class="MsoPlainText">> >  My understanding is that this has nothing to do with the linker - but is a<o:p></o:p></p>
<p class="MsoPlainText">> > function of LLVM optimizations creating line zero debug locations. I believe<o:p></o:p></p>
<p class="MsoPlainText">> > rnk & folks have disabled line zero emission for CodeView debug info in<o:p></o:p></p>
<p class="MsoPlainText">> some<o:p></o:p></p>
<p class="MsoPlainText">> > manner - perhaps that needs a flag? or Steven hasn't got a release with<o:p></o:p></p>
<p class="MsoPlainText">> that<o:p></o:p></p>
<p class="MsoPlainText">> > change in it?<o:p></o:p></p>
<p class="MsoPlainText">> <o:p></o:p></p>
<p class="MsoPlainText">> I think I've run into that with dwarf as well, and there AFAIK it can be<o:p></o:p></p>
<p class="MsoPlainText">> gotten rid of by adding "-mllvm -use-unknown-locations=Disable".<o:p></o:p></p>
<p class="MsoPlainText">> <o:p></o:p></p>
<p class="MsoPlainText">> // Martin<o:p></o:p></p>
</div>
</div>
</body>
</html>