Twenty years of my work with Arm architecture

(juszkiewicz.com.pl)

94 points | by pabs3 165 days ago

5 comments

  • zgs 165 days ago
    I wrote the boot loader for HP's StrongARM 1110 based calculator line.

    Sadly the ACO was shut down before it's release.

    Even though it was never released to the public a few escaped the labs and I've still got the dev kits they sent for boot loader work.

    • russdill 164 days ago
      If you want to get some nostalgia, take a dive into blob. One of the old lart projects
  • jeffrallen 164 days ago
    > Also how to avoid those who deserve to be ignored.

    An important skill in Open Source, alas.

  • kjs3 164 days ago
    The first ARM I spent quality time was on a StrongARM SA1110 dev board. Interesting stuff, but very mobile focused and the toolchain left much to be desired. People do forget that ARM had pretty stiff competition from MIPS and to a slightly lesser extent SuperH at the time. There was a lot of innovation and a fun time to be mucking around. SA-1110 ended up not being a fit for what we wanted to do, and in the end I did other things, but worthwhile experience.
    • sillywalk 164 days ago
      Anybody remember the Corel Netwinder, mini StrongARM 110 based Linux box?
      • kjs3 164 days ago
        Oh yeah...I remember those. Neet idea, but I thought the Cobalt Qube had the tiny Linux RISC coolness factor wrapped up at the time.
  • hardware2win 164 days ago
    The Advantage of early adopters

    In the peak of hype they have years or decades of exp.

    • mindentropy 164 days ago
      Is adopting RISC-V now will provide an early adoption advantage in the future?
      • rollcat 164 days ago
        Yes, provided it takes off like ARM does currently. On one hand the work being done on ARM right now is helping displace the x86-64 monoculture, on the other hand it might leave no niche for RISC-V to fill.

        Place your bets wisely.

        • kryptiskt 164 days ago
          RISC-V has the "no royalties to Arm Ltd" niche locked up at least.
          • rollcat 164 days ago
            True, but this is something that could be relatively easy for Arm Ltd to address in an endless number of possible ways, considering their already-dominant position, the perceived seriousness of the threat, etc. Just like Microsoft basically gave up on making the average Joe pay directly for a Windows license.

            Another question is, at what point do you expect RoI on your RISC-V expertise, even if it was basically guaranteed to take 20% of the global CPU market 10 years from now, you still need to ask yourself, what do you want to be doing until then.

            I'm barely old enough to remember when VLIW was still being hyped, and while RISC-V so far has a much better outlook commercially, it would be wise to remember that this market is ruthlessly competitive. Even companies as old and dominant as Intel must remain vigilant, for the old friend next door may eat their lunch and their dog.

        • panick21_ 163 days ago
          ARM helps RISC-V a huge amount. A lot of the software porting for RISC-V is much, much easier because of the effort ARM has already pulled in. The same goes for other things like ARM Platform.

          RISC-V already has lots of niches and its a open standard. Ill be fine.

        • Narishma 164 days ago
          I feel like RISC-V is already successful in low end niches.
  • tobiasfuenke 164 days ago
    Is it common to use ARM instances for web servers? There are huge cost savings
    • 8organicbits 164 days ago
      The last time I looked I tried to deploy a python MVP on ARM but found that some of the dependencies weren't compatible. I'd take a hard look at your ecosystem and what sort of dependencies you're likely to need in the future before committing to ARM.
      • dingi 164 days ago
        This was my observation as well. Python and Node still don't have perfect support on ARM (And no, this was not 10 years ago. Couple months ago tops). Not the core language/runtime but libraries. They still rely on native libs for some stuff. The platform I haven't experienced any issues at all was the JVM. Worked perfectly all the time. At least for my use cases (Web API services).
      • 95014_refugee 164 days ago
        Sometime around 2010, I’d guess? It’s been a long time since this has been a meaningful issue…
        • 8organicbits 164 days ago
          2023. I forget the dependency, possibly something crypto related?
          • repelsteeltje 164 days ago
            Crypto and media codecs are in that area of incompatibilities. Occasionally run into Intel - AMD issues and even subtle generational mishaps every now and then.

            In cloud this is often related to hypervisor hiding architecture details (or plainly lying about them). Another source of trouble is python ecosystem fighting os packages.

            My recommendation would definitely include inspecting your dependencies. Also, be aware of python limitations: it's easy to develop, but but of a nightmare to deploy, maintain when targeting distinct platforms.

      • jeffrallen 164 days ago
        I do development of Odoo addons for a client on my ARM server, never really thought about it, just started working there because it was convenient and it just worked.
        • AeroNotix 164 days ago
          Which ARM server would that be?
          • jeffrallen 164 days ago
            An Oracle always free instance.
      • iraqmtpizza 164 days ago
        I pity the people still using glorified C. Java just works everywhere.
    • 15155 164 days ago
      For the Rust, Go, and Ruby ecosystems it's very easy.
      • jpgvm 164 days ago
        Also trivial on JVM.
        • jeffrallen 164 days ago
          JVM: "Write once, wait around for the damn thing to start up everywhere".
          • weinzierl 164 days ago
            Well, we have GraalVM now, which is "Write twice, wait a little less for the thing to start up on supported platforms."
            • razakel 164 days ago
              I find it amusing that Oracle uses GraalVM.
          • dingi 164 days ago
            I don't think that, a slightly increased startup time affects vast majority of software projects in any meaningful way.
            • toast0 164 days ago
              Cloud provisioning takes so long, language runtime startup doesn't matter. :(
        • fransje26 164 days ago
          And I think C might work too.
          • lmm 164 days ago
            Both people who managed to write a useful C program without any undefined behaviour confirm it worked on ARM. The rest of us might want to be a bit more careful.
      • neonsunset 164 days ago
        Why would you soil the name of Rust with the other two languages on the list? There are far superior options with way better ARM64 support.
        • 15155 164 days ago
          I use Rust across 6+ different target architectures - in webserver applications, in soft CPUs of my own design, constant no_std. I have the luxury of only using Rust in much of my work.

          With that being said, Go is easier and more consistent for cross-compilation than Rust for web server applications. This is a result of the stdlib being so expansive and also 100% golang - down to the DNS resolver. Every non-CGO application will behave similarly. This is not true for Rust.

          • neonsunset 164 days ago
            I disagree on the choice of Go and die a little inside whenever it is suggested as the prime language for back-end workloads.

            To quote the Rob Pike himself: "The key point here is our programmers are Googlers, they’re not researchers. They’re typically, fairly young, fresh out of school, probably learned Java, maybe learned C or C++, probably learned Python. They’re not capable of understanding a brilliant language but we want to use them to build good software. So, the language that we give them has to be easy for them to understand and easy to adopt."

            The better languages for this at ARM64 hosts are C# and Kotlin. One has a lot of investment in high-performance primitives (including the full set of ARM64 SIMD intrinsics), another one has the power of JVM ecosystem. Both have really nice frameworks you don't need to massage to reach high throughput: ASP.NET Core and Vert.X/ActiveJ.

            • 15155 164 days ago
              The language not being semantically "good" does not change the webserver cross-compilation story being easier and more consistent than every other platform. I wouldn't voluntarily choose to use Go, but this is absolutely one of its "killer features."

              C# and JVM languages both require a substantial amount of tooling and runtime support to achieve this "cross-platform" status and it's still really not the same thing as being able to take a 100% Go source repository and releasing native Windows, OSX, and Linux binaries for both ARM64 and AMD64 machines with no additional tooling from any source machine with just a couple of CLI flags.

              With Go, I don't have to install a runtime on the target machine nor do I have to hackily bundle one into my binary. I don't have to make sure the runtime version installed on my system is compatible with whatever I am doing. I don't have to paper over the lack of this functionality with Docker.

              • neonsunset 164 days ago
                .NET and JVM - both put portability as their main feature since the very first version. The described difference does not exist in reality, at least not with .NET.

                JVM tooling produces by-definition portable artifacts that require host runtime (easily accessible by just picking the right container image, which is the same as the most popular way to deploy Go workloads).

                .NET tooling is identical in producing portable assemblies. Alternatively, you can compile it, like Rust, to a single executable file for a target architecture which either includes IL assemblies and JIT compiler or is a native AOT binary. GraalVM native image offers similar (but somewhat more limited) functionality for the Java world. This is identical to what final Rust binary ends up looking like once you include e.g. Tokio and Hyper/Reqwest or a Go one, which, by all means, includes a full runtime.

                It is also just two flags: dotnet publish -p:PublishAot=true -r linux-arm64.

                If anyone has one-liner for GraalVM counterpart - please post it.

                • 15155 164 days ago
                  Fundamentally, to "require host runtime" is not the same thing. There's zero reality where the combination of jars, classpath, system JVM version, system JDK version is the same in developer or end-user experience.

                  C# tooling that statically bundles a massive runtime or JIT compiler where most of the host functionality lives is also fundamentally different in internal implementation than what Go or Rust gives you.

                  GraalVM is a true native binary and is the closest thing mentioned here - the tooling still sucks compared to Rust, Go, or .NET.

                  • neonsunset 164 days ago
                    The "massive runtime" is on average a 20-60MB executable binary (JIT) if you apply trimming (a single flag or build property). It is no different to Go which too includes async runtime with its own threadpool, type system facilities to do reflection and a GC.

                    If you do AOT publish instead (which is about 9MB size for a full web server + threadpool and more) - it will actually outperform Go at trimming unreferenced code once you start adding dependencies (hello 200MB binary sizes or worse in the Go world - it is almost as if there is no free lunch in programming).

                    Do not conveniently ignore these facts - NativeAOT produces true native binaries. If you look at them with Ghidra (with symbols not stripped) - they resemble something like C++ with garbage collector (write barrier calls) and a couple of interface dispatch calls.

                    (I still find it shortsighted and ironic because coming from worse ecosystems to Go naturally feels like a breath of fresh air yet results in developers being stuck in local maxima, ignoring far better options. And it also ends up being the discussion about the publishing model over language merits which Go has few.)

        • yawboakye 164 days ago
          fwiw you’d find more web services written in ‘the other two languages on the list’ than rust. if there’s soiling at all, then the shoe is on the wrong foot.
          • neonsunset 164 days ago
            Will you also say that JavaScript semantics and gotchas are good because millions of developers use it?

            Even if something is widespread, it does not make it good, especially not in the context of a newcomer platform in a server market.

            • yawboakye 164 days ago
              > will you also say that javascript semantics and gotchas are good because millions of developers use it?

              unrelated to your original argument and so i’ll treat it as diversionary and ignore. that said, it’s an important signal that you suffer a deficiency in clear, systematic thinking. i’m happy to re-engage when you rid your arguments of these ‘tin whiskers’ that are equally as damaging as actual tin whiskers.

              • neonsunset 164 days ago
                That's rich coming from a go dev :)
                • yawboakye 164 days ago
                  and ruby. go and ruby. oh and javascript. go and ruby and javascript.
    • aidos 164 days ago
      At least for us, we made the switch in preparation for the release of the M1 Mac machines.

      It took about a year for things to simplify - originally we had to use qemu for dependencies and had to hack and compile a few other bits along the way. We have more gnarly deps than your average web app though.

      Now the only thing we’re running on x86 is Sentry and I’ll stop self hosting that when I get a spare moment because it’s more of a beast to run than I like.

    • el_benhameen 164 days ago
      All of our newer .net stuff runs on ARM instances. Solid cost savings and performance.
    • stn_za 164 days ago
      Definitely more and more common, amazon's graviton instances and container support goes a long way here
    • ta988 164 days ago
      More and more yes.Anything that you have the source of or is compiled for it. Limitations are mostly for numerical computations that may lack some instructions or not be optimised as well as x86. For standard web/micro services they are great.
      • LunaSea 164 days ago
        I've also found that low core frequency can be an issue for database instances.
        • razakel 164 days ago
          Well, databases are black magic where it's difficult to determine if your issue is CPU-bound or IO-bound.
    • pjmlp 164 days ago
      Any managed language, or anything on top of JVM, .NET, BEAM, should be quite easy, minus possible dependencies on native libraries.
    • lowbloodsugar 164 days ago
      Haven’t run a JVM on x86 for years. My first ARM was 1988 tho, so I am biased =)