<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 - [llvm-cov] "__builtin_setjump(buf)" statement leads to the incorrect coverage of the next statement."
   href="https://bugs.llvm.org/show_bug.cgi?id=51009">51009</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[llvm-cov] "__builtin_setjump(buf)" statement leads to the incorrect coverage of the next statement.
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>Runtime Libraries
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>12.0
          </td>
        </tr>

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

        <tr>
          <th>OS</th>
          <td>All
          </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>libprofile library
          </td>
        </tr>

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

        <tr>
          <th>Reporter</th>
          <td>byone.heng@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>$./clang -v                                                                     
clang version 12.0.0 (<a href="https://github.com/llvm/llvm-project.git">https://github.com/llvm/llvm-project.git</a>
b6c8feb29fce39121884f7e08ec6eb0f58da3fb7)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/x/project/llvm-project/build/install/bin/.
Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/8
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
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64

$cat test.c
———————————————————
#include <setjmp.h>

short int true_var = 1;
const volatile unsigned short int false_var = 0;

extern void abort (void);

jmp_buf buf;

void raise0(void)
{
  __builtin_longjmp (buf, 1);
}

int execute(int cmd)
{
  int last = 0;

  __builtin_setjmp (buf);

  if( true_var > 0 )
  {
  if (last == 0)
    while (1)
      {
        last = 1;
        raise0 ();
      }
  }

  if (last == 0)
    return 0;
  else
    return cmd;
}

int main(void)
{
  if (execute (1) == 0)
    abort ();

  return 0;
}

——————————————————

$clang -O0 -g -fcoverage-mapping -fprofile-instr-generate=test.profraw test.c;
./a.out; llvm-profdata merge test.profraw -o test.profdata; llvm-cov show a.out
-instr-profile=test.profdata test.c > test.lcov; cat test.lcov

    5|       |#include <setjmp.h>
    6|       |
    7|       |short int true_var = 1;
    8|       |const volatile unsigned short int false_var = 0;
    9|       |
   10|       |extern void abort (void);
   11|       |
   12|       |jmp_buf buf;
   13|       |
   14|       |void raise0(void)
   15|      1|{
   16|      1|  __builtin_longjmp (buf, 1);
   17|      1|}
   18|       |
   19|       |int execute(int cmd)
   20|      1|{
   21|      1|  int last = 0;
   22|       |
   23|      1|  __builtin_setjmp (buf);
   24|       |
   25|      1|  if( true_var > 0 )
   26|      2|  {
   27|      2|  if (last == 0)
   28|      2|    while (1)
   29|      1|    {
   30|      1|       last = 1;
   31|      1|       raise0 ();
   32|      1|    }
   33|      2|  }
   34|       |
   35|      1|  if (last == 0)
   36|      0|    return 0;
   37|      1|  else
   38|      1|    return cmd;
   39|      1|}
   40|       |
   41|       |int main(void)
   42|      1|{
   43|      1|  if (execute (1) == 0)
   44|      0|    abort ();
   45|       |
   46|      1|  return 0;
   47|      1|}

Line 25 should be executed twice.</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>