This handler encapsulates functionality which abstracts address manipulation in a portable manner.
◆ _Addresses_Add_offset()
Add offset to an address.
This function is used to add an offset to a base address. It returns the resulting address. This address is typically converted to an access type before being used further.
- Parameters
-
[in] | base | is the base address. |
[in] | offset | is the offset to add to base. |
- Returns
- This method returns the resulting address.
◆ _Addresses_Align_down()
Align address to nearest multiple of alignment, truncating.
This function returns the given address aligned to the given alignment. If the address already is aligned, or if alignment is 0, the address is returned as is. The returned address is less than or equal to the given address.
- Parameters
-
[in] | address | is the address to align. |
[in] | alignment | is the boundary for alignment and must be a power of 2. |
- Returns
- Returns the aligned address.
◆ _Addresses_Align_up()
Align address to nearest multiple of alignment, rounding up.
This function returns the given address aligned to the given alignment. If the address already is aligned, or if alignment is 0, the address is returned as is. The returned address is greater than or equal to the given address.
- Parameters
-
[in] | address | is the address to align. |
[in] | alignment | is the boundary for alignment and must be a power of 2 |
- Returns
- Returns the aligned address.
◆ _Addresses_Is_aligned()
Is address aligned.
This function returns true if the given address is correctly aligned for this processor and false otherwise. Proper alignment is based on correctness and efficiency.
- Parameters
-
[in] | address | is the address being checked for alignment. |
- Return values
-
true | The address is aligned. |
false | The address is not aligned. |
◆ _Addresses_Is_in_range()
RTEMS_INLINE_ROUTINE bool _Addresses_Is_in_range |
( |
const void * |
address, |
|
|
const void * |
base, |
|
|
const void * |
limit |
|
) |
| |
Is address in range.
This function returns true if the given address is within the memory range specified and false otherwise. base is the address of the first byte in the memory range and limit is the address of the last byte in the memory range. The base address is assumed to be lower than the limit address.
- Parameters
-
[in] | address | is the address to check. |
[in] | base | is the lowest address of the range to check against. |
[in] | limit | is the highest address of the range to check against. |
- Return values
-
true | The address is within the memory range specified |
false | The address is not within the memory range specified. |
◆ _Addresses_Subtract()
Subtract two addresses.
This function is used to subtract two addresses. It returns the resulting offset.
- Parameters
-
[in] | left | is the address on the left hand side of the subtraction. |
[in] | right | is the address on the right hand side of the subtraction. |
- Returns
- This method returns the resulting address.
◆ _Addresses_Subtract_offset()
Subtract offset from offset.
This function is used to subtract an offset from a base address. It returns the resulting address. This address is typically converted to an access type before being used further.
- Parameters
-
[in] | base | is the base address. |
[in] | offset | is the offset to subtract to base. |
- Returns
- This method returns the resulting address.