> FEX allows you to run x86 applications on ARM64 Linux devices, similar to qemu-user and box64. It offers broad compatibility with both 32-bit and 64-bit binaries, and it can be used alongside Wine/Proton to play Windows games. > It supports forwarding API calls to host system libraries like OpenGL or Vulkan to reduce emulation overhead. An experimental code cache helps minimize in-game stuttering as much as possibl…
FEX-emu – Run x86 applications on ARM64 Linux devices
41–50 of 145 posts
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#42Now we just need a decent ARM Linux laptop.
Snapdragon Elite X laptops are plenty decent.
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#43I believe a lot of the folks working on FEX are also core contributors to Dolphin, the Wii/GC emulator.
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#44Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#45Earlier quoted context omitted.
Snapdragon Elite X laptops are plenty decent.
Qualcomm's linux support is not.
1. https://www.qualcomm.com/developer/blog/2024/05/upstreaming-...
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#46I believe a lot of the folks working on FEX are also core contributors to Dolphin, the Wii/GC emulator.
Nope, Dolphin emulates PowerPC not ARM or ARM64. Totally different architecture.
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#47Earlier quoted context omitted.
Too bad Arm doesn't allow architectural licenses, because this is exactly the kind of thing Valve and the FEX developers would want to extend the ISA to support. I bet we see a RISC-V backend to FEX in the next 6 months, it probably already exists in a private repo. FEX is the shootstring, extra special discount budget (not maligning) version of Rosetta. Apple should sell Rosetta to Valve.
> Too bad Arm doesn't allow architectural licenses QEMU exists. I doubt they want the bad press of suing an Open Source project everyone is using.
They seemed quite happy to destroy their eco system if they won.
https://www.rcrwireless.com/20251001/business/qualcomm-arm-2
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#48Earlier quoted context omitted.
Wow decent results.. impressed.
I would keep in mind that the results reported there are likely quite a bit lower (in terms of CPU-side performance) than what you could achieve in practice, because it's running all of x86 Steam+Proton in the emulator. In a pre-configured environment (like SteamOS for ARM), the Steam client and Proton itself would be native ARM code, and emulation would stop at the win32 API boundary (or at certain critical librarie…
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#49How does fex deal with the fact that the memory model on arm is weak and x86 is total store ordering. It seems like would need to hammer performance by putting memory barriers everywhere to handle all cases. Perhaps fex only works when there are well defined mutexes it can gain visibility into? anyone know?
Looks like they do expensive conservative TSO emulation by default, but they're able to piggyback on compiler work that Microsoft did to make newer Windows x86 binaries easier to emulate. Since MSVC 2019 they annotate the executable with metadata that informs an emulator of when TSO is or isn't needed for correctness. https://fex-emu.com/FEX-2510/ FEX also has settings which weaken or disable TSO altogether, favoring…
Re: FEX-emu – Run x86 applications on ARM64 Linux devices
#50Curious how this will impact the major games that are incompatible due to denuvo type stuff