Hi there! ✋ Static analysis can always back you up when the time comes. But by the time it is done, you will have drunk gallons of coffee... ☕️ That's why developers of these utilities are always looking for a way to make users' life easier and save time. ⏳
The incremental analysis became the result of this search. If you want to learn more about what it is and how it is related to a compiler, you are in the right place.
Enjoy the video and have clean code :) https://www.youtube.com/watch?v=4RRqotjJqBA
The incremental analysis became the result of this search. If you want to learn more about what it is and how it is related to a compiler, you are in the right place.
Enjoy the video and have clean code :) https://www.youtube.com/watch?v=4RRqotjJqBA
YouTube
How to speed up the project analysis and not to waste your time?
Hi there! ✋ Static analysis can always back you up when the time comes. But by the time it is done, you will have drunk gallons of coffee... ☕ That's why developers of these utilities are always looking for the way to make users life easier and save their…
Amnesia: The Dark Descent or How to Forget to Fix Copy Paste https://www.viva64.com/en/b/0769/
Viva64
Amnesia: The Dark Descent or How to Forget to Fix Copy Paste
Just before the release of the Amnesia: Rebirth game, the vendor Fractional Games opened the source code of the legendary Amnesia: The Dark Descent and its sequel Amnesia: A Machine For P...
Checking a Header-Only C++ Library Collection (awesome-hpp) https://www.viva64.com/en/b/0770/
Viva64
Checking a Header-Only C++ Library Collection (awesome-hpp)
Somehow, we've happened to check most of the libraries making up a collection called Awesome hpp. These are small header-only projects in C++. Hopefully, the information about the bugs we...
Few projects can do without outside libraries and other useful ready-made solutions. However, analyzers can see the whole code and check it with abandon. 🔎 That's why sometimes it's worth pointing out the spots where they should stop and analyze nothing ⛔️
🎥 In this video, we'll tell you how to do it and why it is actually useful.
Enjoy the video😉🔗https://www.youtube.com/watch?v=bYPGnwwaHyo
🎥 In this video, we'll tell you how to do it and why it is actually useful.
Enjoy the video😉🔗https://www.youtube.com/watch?v=bYPGnwwaHyo
YouTube
How to get rid of unnecessary things in the analysis?
Hi there! ✋ Few projects can do without outside libraries and other useful ready-made solutions. However, analyzers can see the whole code and check it with abandon. 🔎 That's why sometimes it's worth pointing out the spots where they should stop and analyze…
Rob and Jason are joined by Ben Deane from Quantlab. They first discuss the 11.0 update of Clang and an a blog post highlighting some of the smaller features that were added in C++17. They then talk to Ben about some of his recent CppCon talks including one on what we can learn from the history of programming languages and another on the ability to JIT C++ code. 🔗 https://cppcast.com/ben-deane-jit-history/
📢Just a little reminder: we have classified our blog posts in several topics so that you can find the necessary information easily.
Today we suggest reading these articles on DevOps:
🔗 https://www.viva64.com/en/tags/?q=DevOps
Today we suggest reading these articles on DevOps:
🔗 https://www.viva64.com/en/tags/?q=DevOps
Check how you remember nullable value types. Let's peek under the hood https://www.viva64.com/en/b/0772/
Viva64
Check how you remember nullable value types. Let
Recently nullable reference types have become trendy. Meanwhile, the good old nullable value types are still here and actively used. How well do you remember the nuances of working with t...
PVS-Studio 7.10 Release: OWASP, AUTOSAR, SARIF https://www.viva64.com/en/b/0774/
Viva64
PVS-Studio 7.10 Release: OWASP, AUTOSAR, SARIF
We develop PVS-Studio not only as a classic code analyzer, but also in the direction of Security and Safety. In this regard, we've started working on the support of the OWASP and AUTOSAR ...
Unicorns on Guard for Your Safety: Exploring the Bouncy Castle Code https://www.viva64.com/en/b/0775/
Viva64
Unicorns on Guard for Your Safety: Exploring the Bouncy Castle...
Would you like to see a new batch of errors found by the PVS-Studio static analyzer for Java? Then keep reading the article! This time the Bouncy Castle project is to be checked. The most...
Independent game developers, whether single enthusiasts or teams, are faced with the grave problem of having to eliminate bugs from their code.
And here's where the extensive list of QA tools comes in handy, among which static analysis is one of the crucial ones. It's this methodology that will be covered in this article. Specifically, you will find out how PVS-Studio can help indie developers in the difficult process of bug search. https://www.gamedev.net/blogs/entry/2270792-pvs-studio-for-indie-developers/
And here's where the extensive list of QA tools comes in handy, among which static analysis is one of the crucial ones. It's this methodology that will be covered in this article. Specifically, you will find out how PVS-Studio can help indie developers in the difficult process of bug search. https://www.gamedev.net/blogs/entry/2270792-pvs-studio-for-indie-developers/
Rob and Jason are joined by Joël Lamotte. They first talk about C++20 Modules support in GCC and MSVC and a micro benchmarking library. Then they talk to Joël about how he got involved in C++, and his experiences working on indie video games, robotics and his recent transition to the audio industry working on a web assembly powered website. 🔗 https://cppcast.com/joel-lamotte/
📢Just a little reminder: we have classified our blog posts in several topics so that you can find the necessary information easily.
Today we suggest reading these articles on compilers:
🔗https://www.viva64.com/en/tags/?q=Compiler
Today we suggest reading these articles on compilers:
🔗https://www.viva64.com/en/tags/?q=Compiler
Analyzing the Code Quality of Microsoft's Open XML SDK https://www.viva64.com/en/b/0777/
Viva64
Analyzing the Code Quality of Microsoft
My first encounter with Open XML SDK took place when I was looking for a library that I could use to create some accounting documents in Word. After more than 7 years of working with Word...
How static code analysis helps in the GameDev industry https://www.viva64.com/en/b/0778/
Viva64
How static code analysis helps in the GameDev industry
The gaming industry is constantly evolving and is developing faster than a speeding bullet. Along with the growth of the industry, the complexity of development also increases: the code b...
Rob and Jason are joined by Artem Dinaburg and Ryan Eberhardt. They first talk about a new version of CMake that was just released, an interview with Bjarne Stroustrup and another month of new ISO papers. Then they talk to Artem and Ryan who talk about fuzz testing, including a new fuzz testing project being worked at Trail of Bits to enable fuzz testing on the GPU. 🔗https://cppcast.com/fuzz-testing-gpu/
The Code Analyzer is wrong. Long live the Analyzer! https://www.viva64.com/en/b/0779/
Viva64
The Code Analyzer is wrong. Long live the Analyzer!
Combining many actions in a single C++ expression is a bad practice, as such code is hard to understand, maintain, and it is easy to make mistakes in it. For example, one can instill a bu...
Automatic static analysis using PVS-Studio when building RPM packages https://www.viva64.com/en/b/0780/
Viva64
Automatic static analysis using PVS-Studio when building RPM p...
There was a task to automate static analysis packages included in the distribution. The best tool for this is PVS-Studio, as it can catch compiler calls using strace, thus not requiring a...