# sljit
**Repository Path**: iotLibs/sljit
## Basic Information
- **Project Name**: sljit
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-06-19
- **Last Updated**: 2025-06-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# SLJIT
Platform-independent low-level JIT compiler
https://zherczeg.github.io/sljit/
---
## Purpose
SLJIT is a low-level, platform-independent JIT compiler, which is very well suited for translating bytecode into machine code.
## Features
- Supports a variety of target architectures:
- `x86` 32 / 64
- `ARM` 32 / 64
- `RISC-V` 32 / 64
- `s390x` 64
- `PowerPC` 32 / 64
- `LoongArch` 64
- `MIPS` 32 / 64
- Supports a large number of operations
- Self-modifying code
- Tail calls
- Fast calls
- Byte order reverse (endianness switching)
- Unaligned memory accesses
- SIMD
- Atomic operations
- Allows direct access to registers (both integer and floating point)
- Supports stack space allocation for function local variables
- Supports all-in-one compilation
- Allows SLJIT's API to be completely hidden from external use
- Allows serializing the compiler into a byte buffer
- Useful for ahead-of-time (AOT) compilation
- Code generation can be resumed after deserialization (partial AOT compilation)
## Documentation
The primary source of documentation is [`sljitLir.h`](./sljit_src/sljitLir.h).
Additional documentation can be found on [SLJIT's website](https://zherczeg.github.io/sljit/), as well as in the [`docs` folder](./docs/).
## Contact
Either open an [issue](https://github.com/zherczeg/sljit/issues) or write an email to hzmester@freemail.hu.
## License
SLJIT is licensed under the [Simplified BSD License](./LICENSE).
## Special Thanks
- Alexander Nasonov
- Carlo Marcelo Arenas Belón
- Christian Persch
- Daniel Richard G.
- Giuseppe D'Angelo
- H.J. Lu
- James Cowgill
- Jason Hood
- Jiong Wang (*TileGX support*)
- Marc Mutz
- Martin Storsjö
- Michael McConville
- Mingtao Zhou (*LoongArch support*)
- Walter Lee
- Wen Xichang
- YunQiang Su