<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Missing variables after Instruction Selection at O2"
   href="https://bugs.llvm.org/show_bug.cgi?id=51780">51780</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Missing variables after Instruction Selection at O2
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>DebugInfo
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>cristianassaiante@outlook.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>jdevlieghere@apple.com, keith.walker@arm.com, llvm-bugs@lists.llvm.org, paul_robinson@playstation.sony.com
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Upon calling a function from an external module, the variable l_58 passed to it
is not visible from lldb. Using -opt-bisect-limit we discovered that the pass
causing the symbols disappear is "X86 DAG->DAG Instruction Selection on
function (main)"

$ cat a.c
short a;
void  b()
{
int l_41 = 0,  l_42 = 2,  l_50 = 1,  l_51 = 0,  l_55 = 1,  l_56 = 2,  l_57 = 1;
short l_58 = a ;
test_nop();
test_support_3032(l_41, l_42, l_50, l_51, l_55, l_56, l_57, l_58);
}
int main ()
{
b();
}

$ cat lib/test.c
#include <stdio.h>
#include <stdint.h>
#include "test.h"

void test_nop() {
    printf("\n");
}

void test_support_3032(int l_41, int l_42, int l_50, int l_51, int l_55, int
l_56, int l_57, int l_58) {
    printf("%d %d %d %d %d %d %d %d", l_41, l_42, l_50, l_51, l_55, l_56, l_57,
l_58);
}

$ cat lib/test.h
#pragma once

void test_nop();

void test_support_3032(int l_41, int l_42, int l_50, int l_51, int l_55, int
l_56, int l_57, int l_58);

$ clang -v
clang version 13.0.0
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/local/bin
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0
Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0
Candidate multilib: .;@m64
Selected multilib: .;@m64

$ lldb -v
lldb version 13.0.0

clang revision c2c977ce50597b0e5186afc342c5784bd0aa6973
lldb revision c2c977ce50597b0e5186afc342c5784bd0aa6973

$ clang -g -O2 -o opt lib/test.c a.c
$ lldb opt
(lldb) target create "opt"
Current executable set to '/home/cristianrichie/91/reduce/opt' (x86_64).
(lldb) b 6
Breakpoint 1: 2 locations.
(lldb) r
Process 1990 launched: '/home/cristianrichie/91/reduce/opt' (x86_64)
Process 1990 stopped
* thread #1, name = 'opt', stop reason = breakpoint 1.2
    frame #0: 0x0000000000401188 opt`main [inlined] b at a.c:6:1
   3    {
   4    int l_41 = 0,  l_42 = 2,  l_50 = 1,  l_51 = 0,  l_55 = 1,  l_56 = 2, 
l_57 = 1;
   5    short l_58 = a ;
-> 6    test_nop();
   7    test_support_3032(l_41, l_42, l_50, l_51, l_55, l_56, l_57, l_58);
   8    }
   9    int main ()
(lldb) frame var
(int) l_41 = 0
(int) l_42 = 2
(int) l_50 = 1
(int) l_51 = 0
(int) l_55 = 1
(int) l_56 = 2
(int) l_57 = 1
(lldb) frame var l_58
error: no variable named 'l_58' found in this frame</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>