PVS-Studio 7.28 has been released. Now you can run the analyzer on the ARM architecture, analyze .NET 8 projects, and check Unreal Engine projects without Unity Build — and there is more to come! See the details in this press release.
You can download the latest PVS-Studio version here.
Support for the ARM architecture
Now the PVS-Studio analyzer can be used on the ARM architecture on Windows. PVS-Studio works in x64 compatibility mode.
Next year, we plan to implement the native ARM analyzer version for macOS.
Analysis of .NET 8 projects
PVS-Studio for C# now supports the analysis of .NET 8 projects.
The C# analyzer on Linux and macOS will be working under .NET 8.
Analysis of Unreal Engine projects without Unity Build
When analyzing Unreal Engine projects with PVS-Studio, we often encounter issues with high memory usage and analysis slowdown. They usually arise when individual translation units are combined into a single file (the Unity Build system).
Although the merging of translation units may have a positive impact on the compilation time, the large file size may increase the resource requirements for analysis.
We've added a new section to the documentation on analyzing Unreal Engine projects, which describes how to configure the analysis without Unity Build, while keeping the opportunity to use this mode for building the project.
Support for relative paths in the SARIF reports
We've added support for relative paths to analyzed files in the SARIF files according to the standard SARIF documentation.
Learn more about the SARIF reports in the documentation.
Wildcard patterns for CLMonitor
Now the analyzer supports wildcard patterns in the compile commands for CLMonitor (the compiler monitoring utility on Windows).
Learn more about using the CLMonitor utility in the documentation.
Enhancing .pvsconfig in the C# analyzer
In the C# analyzer, we've enhanced and standardized the enabling and disabling of separate diagnostic rules via the analyzer configuration files — .pvsconfig.
Here is an example:
//-V::3022,5623:1,3
The syntax pattern turns off the warnings of 'High' and 'Low' levels for the V3022 and V5623 diagnostic rules.
Learn more about using the analyzer configuration files (.pvsconfig) in the documentation.
Enhancing the diagnostic rule in the C# analyzer
In the C# analyzer, we've enhanced the handling of parameters that have null as the default value.
It enables the V3080 diagnostic rule to detect more errors related to null dereferencing.
Let's take a look at an example from a real project and see what the analyzer can detect now:
public MyEffectInstance CreateEffect(
IMySourceVoice input,
MyStringHash effect,
MySourceVoice[] cues = null, // <=
float? duration = null)
{
if(!m_effects.ContainsKey(effect))
{
Debug.Fail(string.Format("Effect not found: {0}", effect.ToString()));
return null;
}
var instance = new MyEffectInstance
(m_effects[effect], input, cues, duration, m_engine); // <=
m_activeEffects.Add(instance);
return instance;
}
public MyEffectInstance(
MyAudioEffect effect,
IMySourceVoice input,
MySourceVoice[] cues,
float? duration,
XAudio2 engine)
{
m_engine = engine;
m_effect = effect;
var inputSound = input as MySourceVoice;
....
foreach(var sound in cues) // <=
{
....
}
}
Suspicious code from one of the legacy versions of the Space Engineers project.
In the CreateEffect method, the cues parameter has null as a default value. However, when creating the MyEffectInstance class object, the cues array is traversed in the foreach(var sound in cues) loop.
As a result, if the cues parameter has a default value, a null reference is accessed on loop entry when the class object is created, and a NullReferenceException is thrown.
Fixing the compatibility issues between PVS-Studio and Visual Assist
When working concurrently with the PVS-Studio plugin and Visual Assist, there were issues with file switching in Visual Studio 2019 and 2022.
We've fixed it :).
New diagnostic rules
C++
C#
Java
A nightmare on Bug Street
It just so happened that Halloween coincided with the release dates! Even though it has passed, the terrible bugs are still here! Can you find them?
Let yourself play ghostbusters! We've collected 8 spooky stories for you. Read them and try to find the lurking bugs.
Articles
For C++ programmers:
For C# programmers:
For Java programmers:
Other:
Do you want to check a project with PVS-Studio? Then start from this page.
We have also launched an IT events newsletter for developers! Here you can subscribe to the PVS-Studio events and digest newsletter.
0