specification VS llvm-project

Compare specification vs llvm-project and see what are their differences.

llvm-project

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. (by llvm)
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
specification llvm-project
18 349
386 25,563
0.5% 2.0%
8.0 10.0
2 days ago 6 days ago
Python C++
- 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.

specification

Posts with mentions or reviews of specification. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-05.
  • Improving Interoperability Between Rust and C++
    7 projects | news.ycombinator.com | 5 Feb 2024
    Many people misunderstand how software is written in regulated industries, and assume that a standard is necessary. In practice, this is not the case. Note that Ferrocene[1] had to produce a specification[2] in order to qualify the compiler. But there isn't a requirement that it must be a standard in any way, only that it describes how the Ferrocene compiler works. Nor that it be accepted by upstream.

    1: https://ferrous-systems.com/blog/officially-qualified-ferroc...

    2: https://github.com/ferrocene/specification

  • Aerugo – RTOS for aerospace uses written in Rust
    3 projects | news.ycombinator.com | 31 Jan 2024
    If by "no standard" you mean that there is no language specification for rust, then there is no standard. However, a language specification is not sufficient to verify program correctness, nor is it required.

    A standard may (and the C standard for example does) leave parts of the behavior as "implementation specific" and there's quite a few edge cases - and that's not even talking about "undefined behavior", of which there is plenty. An even in the behavior that is neither implementation specific nor undefined you'll find enough rope to hang yourself (all the beautiful pointers).

    On the other hand, the rust language - while having no formal spec - is fairly well described, in the form of its RFCs and testsuite. We (the ferrocene team) were able to derive a descriptive specification from the existing description fairly easily. So while there is no ISO standard, and no spec that would be sufficient to write a competing implementation, there is a description of what the language behaves like. You can read up on it at https://spec.ferrocene.dev/

    As for verification of correct behavior of such a program, you can employ a host of different techniques depending on what your requirements are - down to verification of the produced bytecode by means of blackbox testing or other.

  • Progress toward a GCC-based Rust compiler
    8 projects | news.ycombinator.com | 18 Dec 2023
    They created a specification for Ferrocene because Rust does not yet have a language standard:

    https://spec.ferrocene.dev/

    >> But does the language need a standard?

    Yes, Rust needs a standard.

    >> And if so, then for what purpose?

    For the same purpose that all standards have--to formally define it in writing.

    Ferrocene's web site (https://ferrous-systems.com/ferrocene/) shows that it meets the ISO 26262 standard (https://en.wikipedia.org/wiki/ISO_26262).

    Why does ISO 26262 matter? What purpose does it serve? Couldn't a vehicle manufacturer just say "our vehicles are safe"? Which would you trust more: a vehicle that is verified to meet ISO 26262 standards, or a vehicle whose manufacturer tells you "it's safe"?

  • Officially Qualified – Ferrocene
    2 projects | news.ycombinator.com | 8 Nov 2023
    https://github.com/ferrocene/specification

    They do say any differences between it and upstream behavior or documentation is a defect in the spec, not upstream. So it isn't authoritative. Unless we all decide it is.

  • A Guide to Undefined Behavior in C and C++
    9 projects | news.ycombinator.com | 17 Aug 2023
    >> The spec does not define the software. The software is as the software does. Having or not having a spec doesn't protect from bugs - people do.

    >> What you're taking about is covering one's ass, not specification.

    They are related.

    In safety-critical software, bugs can cause people to die. Without a spec, no one will use Rust for safety critical software. It would be too risky and no company would accept that level of risk.

    For example if software that controls an airplane is written in Rust and an error occurs during flight, what happens? The software can't just panic and crash or the airplane might crash.

    The Ferrocene project (https://ferrous-systems.com/ferrocene/) is working on producing a safety-critical Rust specification (https://github.com/ferrocene/specification) because having a language specification matters for safety-critical work.

  • A Decade of Rust, and Announcing Ferrocene
    1 project | news.ycombinator.com | 19 Jul 2023
    I'd like to clarify a little here: There's an ISO certifiation in here - but it's not an ISO standard for the language.

    Essentially, the ISO 26262 certification verifies that the compiler release process conforms to a certain standard. It does not create an ISO standard for rust, not does it aim to. At part of the certification process we had to write a spec for the rust language, but it is a descriptive spec of how certain aspects of the rust language behave for one specific release of the compiler.

    The certification builds on this to ensure that tests catch deviations from the spec, known problems are documented etc. So rust as a language is unaffected, as is the rust project. The spec is open source and might be useful to others, you can find it at https://spec.ferrocene.dev/

    The target sectors for ISO 26262 and related industrial certification are clearly sectors that require such certification: automotive, medical, etc.

    Ferrocene itself however, is not only the ISO certified downstream of the rust compiler, it also offers for example long term support and tracking of known issues which the rust project does not provide. This is also important for certain applications that do not strictly require certifications.

  • Ferrocene Language Specification
    1 project | news.ycombinator.com | 30 May 2023
  • Rust has been forked to the Crab Language
    8 projects | news.ycombinator.com | 30 May 2023
    >> Rust is defined by the implementation.

    Hopefully not for long:

    https://github.com/ferrocene/specification

    https://ferrous-systems.com/blog/the-ferrocene-language-spec...

    Hopefully Ferrocene can lead to Rust itself being standardized.

    To me, it seems inevitable that there will be multiple implementations of Rust, especially if Rust continues to be more widely adopted and used in new domains.

    I would also not be surprised if Rust were to adopt optional language extensions for specialized use cases, similar to Ada's language annexes:

    http://www.ada-auth.org/standards/22rm/html/RM-1-1-2.html

    Why? Because the Rust implementation you use for video game programming does not need all of the same features as the Rust implementation that you use for safety-critical embedded systems (for example: railroad control software).

  • GCC 13 and the state of gccrs
    4 projects | /r/rust | 25 Apr 2023
    That’s an easy enough problem to solve (though time consuming), and Ferrocene is working on it. Having >1 compiler implement the spec is just a human fuzz test that finds edge cases, and that’s a good thing.
  • Rust in Automotive
    2 projects | /r/rust | 26 Mar 2023
    I don't know what ISO-26262 requires, but for IEC-61508 only requires "The language should be fully and unambiguously defined." - which I think Ferrocene has taken a decent stab at with https://spec.ferrocene.dev , and an accompanying ISO standard is not a hard requirement.

llvm-project

Posts with mentions or reviews of llvm-project. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-21.
  • Ask HN: Which books/resources to understand modern Assembler?
    6 projects | news.ycombinator.com | 21 Apr 2024
    'Computer Architeture: A Quantitative Apporach" and/or more specific design types (mips, arm, etc) can be found under the Morgan Kaufmann Series in Computer Architeture and Design.

    "Getting Started with LLVM Core Libraries: Get to Grips With Llvm Essentials and Use the Core Libraries to Build Advanced Tools "

    "The Architecture of Open Source Applications (Volume 1) : LLVM" https://aosabook.org/en/v1/llvm.html

    "Tourist Guide to LLVM source code" : https://blog.regehr.org/archives/1453

    llvm home page : https://llvm.org/

    llvm tutorial : https://llvm.org/docs/tutorial/

    llvm reference : https://llvm.org/docs/LangRef.html

    learn by examples : C source code to 'llvm' bitcode : https://stackoverflow.com/questions/9148890/how-to-make-clan...

  • Flang-new: How to force arrays to be allocated on the heap?
    1 project | news.ycombinator.com | 14 Apr 2024
    See

    https://github.com/llvm/llvm-project/issues/88344

    https://fortran-lang.discourse.group/t/flang-new-how-to-forc...

  • The LLVM Compiler Infrastructure
    1 project | news.ycombinator.com | 9 Apr 2024
  • Programming from Top to Bottom - Parsing
    2 projects | dev.to | 18 Mar 2024
    You can never mistake type_declaration with an identifier, otherwise the program will not work. Aside from that constraint, you are free to name them whatever you like, there is no one standard, and each parser has it own naming conventions, unless you are planning to use something like LLVM. If you are interested, you can see examples of naming in different language parsers in the AST Explorer.
  • Look ma, I wrote a new JIT compiler for PostgreSQL
    1 project | news.ycombinator.com | 18 Mar 2024
    > There is one way to make the LLVM JIT compiler more usable, but I fear it’s going to take years to be implemented: being able to cache and reuse compiled queries.

    Actually, it's implemented in LLVM for years :) https://github.com/llvm/llvm-project/commit/a98546ebcd2a692e...

  • C++ Safety, in Context
    8 projects | news.ycombinator.com | 12 Mar 2024
    > It's true, this was a CVE in Rust and not a CVE in C++, but only because C++ doesn't regard the issue as a problem at all. The problem definitely exists in C++, but it's not acknowledged as a problem, let alone fixed.

    Can you find a link that substantiates your claim? You're throwing out some heavy accusations here that don't seem to match reality at all.

    Case in point, this was fixed in both major C++ libraries:

    https://github.com/gcc-mirror/gcc/commit/ebf6175464768983a2d...

    https://github.com/llvm/llvm-project/commit/4f67a909902d8ab9...

    So what C++ community refused to regard this as an issue and refused to fix it? Where is your supporting evidence for your claims?

  • Clang accepts MSVC arguments and targets Windows if its binary is named clang-cl
    2 projects | news.ycombinator.com | 2 Mar 2024
    For everyone else looking for the magic in this almost 7k lines monster, look at line 6610 [1].

    [1] https://github.com/llvm/llvm-project/blob/8ec28af8eaff5acd0d...

  • Rewrite the VP9 codec library in Rust
    5 projects | news.ycombinator.com | 28 Feb 2024
    Through value tracking. It's actually LLVM that does this, GCC probably does it as well, so in theory explicit bounds checks in regular C code would also be removed by the compiler.

    How it works exactly I don't know, and apparently it's so complex that it requires over 9000 lines of C++ to express:

    https://github.com/llvm/llvm-project/blob/main/llvm/lib/Anal...

  • Fortran 2023
    1 project | news.ycombinator.com | 22 Feb 2024
    https://github.com/llvm/llvm-project/blob/main/flang/docs/F2...
  • MiniScript Ports
    10 projects | dev.to | 7 Feb 2024
    • Go • Rust • Lua • pure C (sans C++) • 6502 assembly • WebAssembly • compiler backends, like LLVM or Cranelift

What are some alternatives?

When comparing specification and llvm-project you can also consider the following projects:

bc - An implementation of the POSIX bc calculator with GNU extensions and dc, moved away from GitHub. Finished, but well-maintained.

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

stc - Speedy TypeScript type checker

Lark - Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.

crab - A community fork of a language named after a plant fungus. All of the memory-safe features you love, now with 100% less bureaucracy!

gcc

polonius - Defines the Rust borrow checker.

SDL - Simple Directmedia Layer

windows-rs - Rust for Windows

cosmopolitan - build-once run-anywhere c library

compiler-team - A home for compiler team planning documents, meeting minutes, and other such things.

windmill - Open-source developer platform to turn scripts into workflows and UIs. Fastest workflow engine (5x vs Airflow). Open-source alternative to Airplane and Retool.