wil VS riscv-j-extension

Compare wil vs riscv-j-extension and see what are their differences.

wil

Windows Implementation Library (by microsoft)

riscv-j-extension

Working Draft of the RISC-V J Extension Specification (by riscv)
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
wil riscv-j-extension
14 6
2,457 149
0.7% 0.0%
7.9 6.8
12 days ago 10 days ago
C++ Makefile
MIT License Creative Commons Attribution 4.0
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.

wil

Posts with mentions or reviews of wil. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-19.
  • C-Macs – a pure C macOS application
    11 projects | news.ycombinator.com | 19 Apr 2024
    Even then, MFC and C++/CX were the only productive ways to use it from Microsoft SDKs.

    .NET isn't as convenient as VB 6 was, fully embracing COM as the VBX replacement model, technically introduced in VB5, but still some stuff was lacking.

    Then there is Delphi and C++ Builder.

    It beat me that having doubled down on COM since how Longhorn went down, and Windows team getting their way doing avoiding .NET to take over, they hardly managed to create nice tooling as the competition.

    Editing IDL files with a Notepad like experience, manually merging generated code, and a couple of frameworks that barely go beyond yet another way to do AddRef/Release/QueryInterface and aggregation.

    Meanwhile D-BUS, XPC and AIDL, provide much better dev experience.

    Pity that Borland products are kind of tainted due to mismanagement decisions, otherwise maybe fixing COM dev experience would already been seriously taken by VS team.

    Ah, nowadays WIL is probably the best approach when having only to consume COM.

    https://github.com/microsoft/wil

  • ntoskrnl7/crtsys: C/C++ Runtime library for system file (Windows Kernel Driver)
    4 projects | /r/cpp | 30 Jun 2022
    Have a look at WIL for a C++ library used by Microsoft themselves, including kernel development.
  • I'm thinking about using a struct to hold allocated memory and guaranteeing it will be released when the struct goes out of scope, as an alternative to smart pointers. What do you think?
    1 project | /r/cpp_questions | 6 May 2022
    I'm digging for more information and it looks like Microsoft's created a way to handle the problems I'm trying to address with this: https://github.com/Microsoft/wil/wiki/RAII-resource-wrappers
  • Unwrapping WinUI3 for C++
    1 project | /r/cpp | 28 Apr 2022
    Since we are on this subject, those that need a nice C++ library to deal with COM in VC++, are better served with WIL.
  • RISC-V J extension – Instructions for JITs
    3 projects | news.ycombinator.com | 11 Mar 2022
    Not since Vista.

    https://docs.microsoft.com/en-us/cpp/build/reference/kernel-...

    > Creates a binary that can be executed in the Windows kernel. The code in the current project gets compiled and linked by using a simplified set of C++ language features that are specific to code that runs in kernel mode.

    And then there is WIL, https://github.com/microsoft/wil

    https://community.osr.com/discussion/291326/the-new-wil-libr...

    > First off, let me point out that this library is used to implement large parts of the OS. There are hundreds of developers here who use it. So unlike, uh, some other things that get tossed onto github, this project is not likely to wither and die tomorrow.

    > There are, however, only a handful of kernel developers working on the library, so the kernel support has been coming along much slower. I'd like to expand the existing kernel features in depth ....

  • ToaruOS 2.0
    3 projects | news.ycombinator.com | 13 Dec 2021
    > Plus C++ standard library can't be used anyway and auto pointers aren't really that much of a concern at the kernel level

    https://github.com/microsoft/wil

    "Ah, but that isn't used on the Windows kernel" would be the expected reply, well

    https://community.osr.com/discussion/291326/the-new-wil-libr...

    "Microsoft's toolchain does not ship a copy of the STL that works in kernel mode. Partly this is because the kernel's CRT doesn't support C++ exceptions. (And partly this is because I/O is wildly different in kernel, so you'd have to rewrite the implementation of all the I/O libraries.)

    But for kernel developers, wil ships a subset of an STL implementation. To avoid conflicting with the real STL, it's available under the wistd namespace. The rule of thumb is that wistd::foo is a drop-in replacement for std::foo."

  • Linux Sucks 2021 – The End of Linux Is Nigh
    1 project | news.ycombinator.com | 16 Sep 2021
    Windows is a mix of legacy C code, which started to be migrated into C++ around the Vista time (hence /kernel in VC++) and .NET/COM (WinRT is basically COM with some extras).

    Modern kernel code makes use of WIL.

    https://github.com/microsoft/wil

  • Away from Exceptions: Errors as Values
    1 project | news.ycombinator.com | 30 Aug 2021
  • Windows Implementation Libraries (WIL)
    1 project | news.ycombinator.com | 29 Jul 2021
  • Finding Windows HANDLE leaks, in Chromium and others
    2 projects | news.ycombinator.com | 26 Jul 2021

riscv-j-extension

Posts with mentions or reviews of riscv-j-extension. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-22.
  • Jazelle DBX: Allow ARM processors to execute Java bytecode in hardware
    2 projects | news.ycombinator.com | 22 Jan 2024
    The gains seem to not have been high enough to sustain that project. Nowadays CPUs plan, fuse and reorder so much of micro-code that lower-level languages can sort of be considered virtual as well.

    But Java and similar languages extract more freedom-of-operation from the programmer to the runtime: no memory address shenanigans, richer types, and to some extent immutability and sealed chunks of code. All these could be picked up and turned into more performance by the hardware; with some help from the compiler. Sort of like SQL being a 4th-gen language, letting the runtime collect statistics and chose the best course of execution (if you squint at it in the dark with colored glasses)

    More recent work about this is to be found on the RISC-V J extension [1], still to be formalized and picked up by the industry. Three features could help dynamic languages:

    * Pointer masking: you can fit a lot in the unused higher bits of an address. Some GCs use them to annotate memory (refered-to/visited/unvisited/etc.), but you have to mask them. A hardware assisted mask could help a lot.

    * Memory tagging: Helps with security, helps with bounds-checking

    * More control over instruction caches

    It is sort of stale at the moment, and if you track down the people working on it they've been reassigned to the AI-accelerator craze. But it's going to come back, as Moore's law continues to end and Java's TCO will again be at the top of the bean-counter's stack.

    [1] https://github.com/riscv/riscv-j-extension

  • JDK 20 G1/Parallel/Serial GC Changes
    4 projects | news.ycombinator.com | 17 Mar 2023
  • Hacker News top posts: Mar 12, 2022
    4 projects | /r/hackerdigest | 12 Mar 2022
    RISC-V J extension – Instructions for JITs\ (40 comments)
  • RISC-V J extension – Instructions for JITs
    1 project | /r/hackernews | 12 Mar 2022
    3 projects | news.ycombinator.com | 11 Mar 2022
    There's a document in there about pointer masking: https://github.com/riscv/riscv-j-extension/blob/master/point...

    It seems like the objective of this is to implement different access privileges... but why do you need specialized instructions for this? This is typically done by the OS and memory protection. The pointer masking extension would be to have multiple levels of privilege within a single process? I'm assuming that this is to protect the JIT from a JITted program? Except it's not completely safe, because there might still be bugs in the JIT that could allow messing with the pointer tags. Struggling to think of a real use case.

What are some alternatives?

When comparing wil and riscv-j-extension you can also consider the following projects:

cppwin32 - A modern C++ projection for the Win32 SDK

mitnal - Twitter client for UEFI

winapi - Windows API declarations without <windows.h>, for internal Boost use.

mmtk-core - Memory Management ToolKit

toaruos - A completely-from-scratch hobby operating system: bootloader, kernel, drivers, C library, and userspace including a composited graphical UI, dynamic linker, syntax-highlighting text editor, network stack, etc.

stlkrn - C++ STL in the Windows Kernel with C++ Exception Support

win32metadata - Tooling to generate metadata for Win32 APIs in the Windows SDK.

crtsys - C/C++ Runtime library for system file (Windows Kernel Driver) - Supports Microsoft STL

EA Standard Template Library - EASTL stands for Electronic Arts Standard Template Library. It is an extensive and robust implementation that has an emphasis on high performance.

STL - MSVC's implementation of the C++ Standard Library.

imgui - Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies

toaru-nih - NOTICE: The ToaruOS-NIH Project has been MERGED UPSTREAM. This repository is now archived.