parrotcode: Byteorder Conversion Functions | |
Contents | Documentation |
docs/dev/byteorder.pod - Byteorder Conversion Functions
The byteorder code will check the endianness of an INTVAL
or an opcode_t
value and swap from little to big,
or big to little when appropriate.
Functions also exist to convert a 4,
8,
12,
or 16 byte character buffer to big or little endian.
The functions will be placed in the PackFile vtable and will be called when necessary.
The Parrot interpreter should be smart enough to avoid calling these functions when converting from and to the same byteorder.
The algorithm to change from one endianness to another is identical and simple to understand.
Basically,
the size of an INTVAL
or opcode_t
is used to determine at compile time how many bits should be shifted around.
Then the correct bits are shifted by the correct amounts (please look at source code for exact amounts).
The buffer change functions are implemented by a straight forward algorithm that assigns swaps all of the bytes.
fetch_iv_le
INTVAL
into little endian format.
It is a no-op if the native format is already little endian.fetch_iv_be
INTVAL
into big endian format.
It is a no-op if the native format is already big endian.fetch_op_le
opcode_t
into little endian format.
It is a no-op if the native format is already little endian.fetch_op_be
opcode_t
into big endian format.
It is a no-op if the native format is already big endian.fetch_buf_le_
(4,8,12,16)memcpy
is performed if the native format is already little endian.fetch_buf_be_
(4,8,12,16)memcpy
is performed if the native format is already big endian.endianize_fetch_int
INTVAL
directly from a bytestreamendianize_put_int
INTVAL
directly on a bytestreamInitial version by Melvin on 2002/05/01
This assumes big or little endianness...other,
more esoteric forms (such as middle endian) are not supported.
Also,
an assumption of 4 or 8 byte INTVAL
's and opcode_t
's is made.
|