blob: 9b6c845857c614cbc1cae1f24c72013b9eb2f1d3 [file] [log] [blame]
==== Overview ====
The assembly source code is produced from custom python-based templates.
All the architecture-specific template files are concatenated to create
one big python script. This generated python script is then executed to
produced the final assembly file. The template syntax is:
* Lines starting with % are python code. They will be copied as-is to
the script (without the %) and thus executed during the generation.
* Other lines are text, and they are essentially syntax sugar for
out.write('''(line text)''') and thus they write the main output.
* Within a text line, $ can be used insert variables from code.
The final assembly sources are written into the "out" directory, where
they are picked up by the Android build system.
The best way to become familiar with the interpreter is to look at the
generated files in the "out" directory.
==== Instruction file format ====
The assembly instruction files are simply fragments of assembly sources.
The starting label will be provided by the generation tool, as will
declarations for the segment type and alignment.
The following global variables are generally available:
$opcode - opcode name, e.g. "OP_NOP"
$opnum - opcode number, e.g. 0 for OP_NOP
$handler_size_bytes - max size of an instruction handler, in bytes
$handler_size_bits - max size of an instruction handler, log 2
Both C and assembly sources will be passed through the C pre-processor,
so you can take advantage of C-style comments and preprocessor directives
like "#define".
The generation tool does *not* print a warning if your instructions
exceed "handler-size", but the VM will abort on startup if it detects an
oversized handler. On architectures with fixed-width instructions this
is easy to work with, on others this you will need to count bytes.
==== Using C constants from assembly sources ====
The file "art/runtime/asm_support.h" has some definitions for constant
values, structure sizes, and struct member offsets. The format is fairly
restricted, as simple macros are used to massage it for use with both C
(where it is verified) and assembly (where the definitions are used).
If a constant in the file becomes out of sync, the VM will log an error
message and abort during startup.
==== Interpreter Control ====
The nterp fast interpreter achieves much of its performance advantage
over the C++ "switch" interpreter through its efficient mechanism of
transitioning from one Dalvik bytecode to the next. Nterp uses a computed-goto
mechanism, in which the handler entrypoints are located at the base of the
handler table + (opcode * 128).
In normal operation, the dedicated register rIBASE
(r8 for ARM, edx for x86) holds a mainHandlerTable. If we need to switch
to a mode that requires inter-instruction checking, rIBASE is changed
to altHandlerTable. Note that this change is not immediate. What is actually
changed is the value of curHandlerTable - which is part of the interpBreak
structure. Rather than explicitly check for changes, each thread will
unconditionally refresh rIBASE at backward branches, exception throws and returns.