substrate VS JITWatch

Compare substrate vs JITWatch and see what are their differences.

substrate

Create native Java(FX) apps for desktop, mobile and embedded (by gluonhq)

JITWatch

Log analyser / visualiser for Java HotSpot JIT compiler. Inspect inlining decisions, hot methods, bytecode, and assembly. View results in the JavaFX user interface. (by AdoptOpenJDK)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
substrate JITWatch
6 10
368 3,015
1.6% 0.9%
5.9 6.7
about 1 month ago 28 days ago
Java Java
GNU General Public License v3.0 only 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.

substrate

Posts with mentions or reviews of substrate. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-20.
  • Building a Slack/Discord Alternative with Tauri/Rust
    8 projects | news.ycombinator.com | 20 Jun 2023
    Haha, it's amusing that the history essays are one of the things you remember :)

    Yes you can compile Scala and ScalaFX apps down to native binaries this way. Look at Gluon Substrate:

    https://github.com/gluonhq/substrate

    One of our customers is experimenting with shipping such apps with Conveyor. There's a discussion ongoing here:

    https://github.com/hydraulic-software/conveyor/discussions/6...

    We got a console hello world working, albeit the DX is a bit rough. You need some ugly config boilerplate and some additional Native Image json files. But, it works, at least enough to create a Mac package with the regular Conveyor feature set. There are some limits though. I think the WebView doesn't work when the app is natively compiled this way.

    If it all starts working well it could be quite interesting for desktop app development, as suddenly you could use high level languages and portable UI toolkits but with the sort of startup time, performance and memory usage you'd expect from native apps (modulo binary size which is still quite large). If you want to use HTML as the UI then you can use the Chromium Embedding Framework, which would give you an Electron-like experience but with many more available languages:

    https://hydraulic.dev/blog/13-deploying-apps-with-jcef.html

    I've been using JVM GUI for years for various tasks. It was appropriate for Bitcoin tasks because it's immune to injection attacks, because you can run everything locally with P2P protocols like the original Bitcoin app did, it's portable etc. Also I learned GUI programming decades ago and find classical UI toolkit concepts like VBox, HBox, StackPane, TableView etc more intuitive than HTML.

  • GraalVM Native Image — Faster, Smarter, Leaner
    6 projects | /r/java | 25 Apr 2023
    I ran into quite a few issues during Android/iOS development (e.g. java.util.prefs and GraalVM pulling in unused methods), but Windows was comparatively smooth. Most of my issues were related to understanding the toolchain,e.g., not knowing how arguments are passed to run.
  • Question on JavaFX web applications
    6 projects | /r/JavaFX | 1 Feb 2023
    With JavaFX and Gluon Substrate + GraalVM you can even compile you app to an executable.
  • What is your experience with GraalVM Native?
    5 projects | /r/java | 14 Jun 2022
    missing methods in Android library
  • How does Gluon's GraalVM based substrate work?
    3 projects | /r/java | 4 Sep 2021
    Hello, I've recently stumbled across this project from Gluon and I've been wondering for some days how the project actually works. I've read the source code, but it appears that no code is responsible for implementing the hundreds of classes that make up JavaFX. Does this mean that JavaFX can work out of the box on IOS and Android but there didn't use to be a way to compile the code to a native executable for said platforms? Thanks in advance
  • Experiences with ZGC on JavaFX?
    1 project | /r/JavaFX | 21 Mar 2021
    Don't tested memory difference myself yet but maybe your solution could be to convert to native with graalvm and gluon substrate? https://github.com/gluonhq/substrate

JITWatch

Posts with mentions or reviews of JITWatch. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-26.
  • It's 2023, so of course I'm learning Common Lisp
    11 projects | news.ycombinator.com | 26 Jul 2023
    You can kind of do the same as DISASSEMBLE in Clojure.

    There are some helper projects like https://github.com/Bronsa/tools.decompiler, and on the OpenJDK JitWatch (https://github.com/AdoptOpenJDK/jitwatch), other JVMs have similar tools as well.

    It isn't as straightforward as in Lisp, but it is nonetheless doable.

  • How much is too much? 380+ lines of an AssertionUtil class Or Loggin classes in general.
    1 project | /r/javahelp | 9 May 2023
    As you have encapsulated the asserts inside methods, these will be called at runtime with the arguments evaluated (for example, creating that lambda). When assertions are disabled, the C1/C2 may inline the empty method call eventually, but I don't know whether it drops the lambda instantiation as well. You can use JITWatch to see what gets inlined. The general notion though is to not worry too much. Lazy log messages are a common pattern.
  • JIT x86 ia32
    1 project | /r/javahelp | 9 Nov 2022
    You can use jitwatch for this. To see the actual assembly code generated you will also need to use a debug build of the jvm.
  • SIMD accelerated sorting in Java – how it works and why it was 3x faster
    2 projects | news.ycombinator.com | 12 Jun 2022
    If you use Oracle's own IDE, it will support it out of the box, as it already did on Sun's days.

    Then there are other ways depending on which JVM implementation is used.

    On OpenJDK's case you can load runtime plugin to do it

    https://github.com/AdoptOpenJDK/jitwatch

  • Equivalent of cppinsight for kotlin
    1 project | /r/Kotlin | 30 Oct 2021
  • Compiler Explorer - Java support
    2 projects | /r/java | 27 Apr 2021
    We use https://github.com/AdoptOpenJDK/jitwatch for this.
  • How to Read Assembly Language
    1 project | news.ycombinator.com | 2 Mar 2021
  • Why Zig When There Is Already C++ and Rust?
    10 projects | news.ycombinator.com | 15 Jan 2021
    If you already know any JVM or .NET language, the first step would be to understand the full stack, you don't need C for that.

    Many of us were doing systems programming with other languages before C went mainstream.

    What you need to learn is computer architecture.

    Getting back to JVM or .NET, you can get hold of JIT Watch, VS debug mode or play online in SharpLab.

    Get to understand how some code gets translated into MSIL/JVM, and how those bytecodes end up being converted into machine code.

    https://github.com/AdoptOpenJDK/jitwatch/wiki/Screenshots

    https://sharplab.io/

    Languages like F# and C# allow you to leave the high level comfort and also do most of the stuff you would be doing in C.

    Or just pick D, which provides the same comfort and goes even further in low level capabilities.

    Use them to write a toy compiler, userspace driver, talking to GPIO pins in a PI, manipulating B-Tree data stuctures directly from inodes, a TCP/IP userspace driver.

    Not advocating not to learn Zig, do it still, the more languages one learns the better.

    Only advocating what might be an easier transition path into learning about systems programming concepts.

  • JIT 101
    1 project | dev.to | 11 Jan 2021
    You can enable a lot of debug information about how the compiler decides what to do with your code using feature flags like -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining. If you want to dive deeper into the world of the Hotspot JIT Compiler, have a look at JITWatch.
  • Is Java As Fast As C When It Comes To Stack
    1 project | /r/java | 21 Dec 2020
    In what concerns HotSpot, one way would be JITWatch.

What are some alternatives?

When comparing substrate and JITWatch you can also consider the following projects:

JFoenix - JavaFX Material Design Library

JMH - "Trust no one, bench everything." - sbt plugin for JMH (Java Microbenchmark Harness)

jfx - JavaFX mainline development

SharpLab - .NET language playground

Recaf - The modern Java bytecode editor

Sniffy - Sniffy - interactive profiler, testing and chaos engineering tool for Java

avaje-inject - Dependency injection via APT (source code generation) ala "Server-Side Dagger DI"

jHiccup - jHiccup is a non-intrusive instrumentation tool that logs and records platform "hiccups" - including the JVM stalls that often happen when Java applications are executed and/or any OS or hardware platform noise that may cause the running application to not be continuously runnable.

usb-serial-for-android - Android USB host serial driver library for CDC, FTDI, Arduino and other devices.

LatencyUtils - Utilities for latency measurement and reporting

scalaonandroid - A tutorial and examples of how to write Android apps in Scala 2.13 and Scala 3.

quickperf - QuickPerf is a testing library for Java to quickly evaluate and improve some performance-related properties