SaferCPlusPlus-AutoTranslation2 VS llvm-project-deluge

Compare SaferCPlusPlus-AutoTranslation2 vs llvm-project-deluge and see what are their differences.

SaferCPlusPlus-AutoTranslation2

auto-conversion of C source files to a memory-safe subset of C++ (by duneroadrunner)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
SaferCPlusPlus-AutoTranslation2 llvm-project-deluge
4 8
8 156
- -
0.0 0.0
about 2 years ago 5 days ago
Boost Software License 1.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

SaferCPlusPlus-AutoTranslation2

Posts with mentions or reviews of SaferCPlusPlus-AutoTranslation2. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-28.
  • United States White House Report on Memory Safe Programming [pdf]
    5 projects | news.ycombinator.com | 28 Feb 2024
    Hi pizlonator, I'm working on a solution with similar goals (I think), but a bit of a different approach. It's a tool that auto-translates[1] (reasonable) C code to a memory-safe subset of C++. The goal is to get it reliable enough that it can be simply inserted as an (optional) build step, so that the source code can be maintained in its original form.

    I'm under the impression that you're more of a low-level/compiler person, but I suggest that a higher level language like (a memory-safe subset of) C++ actually makes for a more desirable "intermediate representation" language, as it's amenable to maintaining information about the "intent" of the code, which can be helpful for optimization. It also allows programmers to provide manually optimized memory-safe implementations for performance-critical parts of the code.

    The memory-safe subset of C++ is somewhat analogous to Rust's in terms of performance and in that it depends on a non-trivial static checker, but it imposes less onerous restrictions than Rust on single-threaded code.

    The auto-translation tool already does the non-trivial (optimization) task of determining whether any (raw) pointer is being used as an array iterator or not. But further work to make the resulting code more performance optimal is needed. The task of optimizing a high-level "intermediate representation" language like (memory-safe) C++ is roughly analogous to optimizing lower-level IR languages, but the results should be more effective because you have more information about the original code, right?

    I think this project could greatly benefit from the kind of effort you've displayed in yours.

    [1]: https://github.com/duneroadrunner/SaferCPlusPlus-AutoTransla...

  • Upcoming Changes to C++ : Bjarne Stroustrup, Gabriel Dos Reis.
    2 projects | /r/cpp | 22 Feb 2023
    Part of the reason the proposed static analyzer has to be so ambitious is because it's trying to validate (i.e. verify as safe) as much existing/legacy code as possible. An alternative approach is to autoconvert existing code to new code that is easier to verify as safe. One advantage of this approach is that in instances where you cannot (yet) statically verify safety, you can convert to (new) elements that may resort to run-time safety mechanism when necessary. With access to the full range of safety-performance tradeoffs, this approach can (fully) safen a much larger set of legacy code then any static analyzer alone could.
  • Some thoughts on safe C++
    5 projects | /r/cpp | 25 Dec 2022
    There's also some support for autoconverting legacy C code that is not performance critical to use the library and conform to a safe subset of C++.

llvm-project-deluge

Posts with mentions or reviews of llvm-project-deluge. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-12.

What are some alternatives?

When comparing SaferCPlusPlus-AutoTranslation2 and llvm-project-deluge you can also consider the following projects:

misra-rust - An investigation into what adhering to each MISRA-C rule looks like in Rust. The intention is to decipher how much we "get for free" from the Rust compiler.