Files
wasmtime/lib/cretonne/meta/isa/arm32/__init__.py
Jakob Stoklund Olesen 1f6dd0dab7 Generate register bank descriptions.
Use the information in the ISA's registers.py files to generate a
RegInfo Rust data structure.
2016-11-22 18:15:21 -08:00

15 lines
355 B
Python

"""
ARM 32-bit Architecture
----------------------
This target ISA generates code for ARMv7 and ARMv8 CPUs in 32-bit mode
(AArch32). We support both ARM and Thumb2 instruction encodings.
"""
from __future__ import absolute_import
from . import defs
from . import registers # noqa
# Re-export the primary target ISA definition.
ISA = defs.ISA.finish()