FEX/External/FEXCore
Lioncache c8e3ca481f OpcodeDispatcher: Remove explicit zero-extending in VBROADCASTOp
Since the implementations zero the upper lanes when appropriate, we can
remove the unnecessary explicit move.
2023-08-17 12:17:24 -04:00
..
docs Merge pull request #2769 from random415/main 2023-07-13 11:48:39 -07:00
include FEXCore/Config: Stop making temporary string copies 2023-08-16 21:35:13 -07:00
Scripts Config: Stop passing a temporary std::string_view outside of scope 2023-08-10 22:27:59 -07:00
Source OpcodeDispatcher: Remove explicit zero-extending in VBROADCASTOp 2023-08-17 12:17:24 -04:00
unittests ARMEmitter: Handle SVE load and broadcast element group 2023-08-15 13:47:12 -04:00
CMakeLists.txt FEXCore: Compile without exceptions 2023-05-04 14:42:02 -07:00
LICENSE FEXCore: Move to Externals/FEXCore 2020-03-06 09:07:37 +02:00
Readme.md docs: Remove stale text 2022-03-29 11:27:43 +02:00

FEXCore - Fast x86 Core emulation library

This is the core emulation library that is used for the FEX emulator project. This project aims to provide a fast and functional x86-64 emulation library that can meet and surpass other x86-64 emulation libraries.

Goals

  • Be as fast as possible, beating and exceeding current options for x86-64 emulation
    • 25% - 50% lower performance than native code would be desired target
    • Use an IR to efficiently translate x86-64 to our host architecture
    • Support a tiered recompiler to allow for fast runtime performance
    • Support offline compilation and offline tooling for inspection and performance analysis
    • Support threaded emulation. Including emulating x86-64's strong memory model on weak memory model architectures
  • Support a significant portion of the x86-64 instruction space.
    • Including MMX, SSE, SSE2, SSE3, SSSE3, and SSE4*
  • Support fallback routines for uncommonly used x86-64 instructions
    • Including x87 and 3DNow!
  • Only support userspace emulation.
    • All x86-64 instructions run as if they are under CPL-3(userland) security layer
  • Minimal Linux Syscall emulation for testing purposes
  • Portable library implementation in order to support easy integration in to applications

Target Host Architecture

The target host architecture for this library is AArch64. Specifically the ARMv8.1 version or newer. The CPU IR is designed with AArch64 in mind but should allow for other architectures as well. x86-64 host support is available for ease of development, but is not a priority.

Not desired

  • Kernel space emulation
  • CPL0-2 emulation
  • Real Mode, Protected Mode, Virtual-8086 Mode, System Management Mode
  • IRQs
  • SVM
  • "Cycle Accurate" emulation