Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you haven't received our response, please do the following:
check your Spam/Junk folder and click the "Not Spam" button for our message.
This way, you won't miss messages from our team in the future.

>
>
Why is the number of the line where an …

Why is the number of the line where an issue was found sometimes absent in the Error List in PVS-Studio?

Jun 28 2010

Sometimes the PVS-Studio code analyzer seems to find an issue in the code on which it generates a message, specifies the file name but does not show the number of the line with the issue as shown in the figure.

0072_Line_number_is_absent/image1.png

I should note right away that the analyzer does not specify numbers of lines for some errors in the demo version, but now we do not speak about the limitations of the demo-version.

Such a behavior is determined by two specific features:

  • the specified file (dso.y in the figure) is an automatically generated file that is not quite correct.
  • the Error List window used in PVS-Studio to generate messages does not show line numbers for those files which are physically absent in the specified folder on the disk.

To understand this case, let's open the Output Window that also contains messages generated by the PVS-Studio analyzer.

0072_Line_number_is_absent/image2.png

It is written in this window that the problem is in the file dso.y, line 467. But if we look at the project's files, it will appear that either there is no such a file (dso.y) at all in the project or it is situated in some other folder. Well, is this the fault of the PVS-Studio analyzer? Not quite.

Code analyzers, as well as compilers, get information about position in a file relying on special #line directives which are always present in preprocessed files. You can easily find such a directive (in one line) in a common preprocessed file:

#line 72 "c:\\program files\\

microsoft visual studio 8\\vc\\include\\stdio.h"

Positions of code specified in messages are obtained from this information.

Let's now look at the automatically generated dso.cpp file. You can see the following thing there:

#line 47 "dso.y"

Note that, first, the specified path is not complete and, second, the dso.y file might be absent at all on the computer you check the project on.

So, the absence of a line number in a message generated by the PVS-Studio analyzer means that the file is not found in the specified folder. You should find this file manually and, as well manually, look through the specified code lines.

Popular related articles


Comments (0)

Next comments next comments
close comment form