CMSIS compiler armclang (Arm Compiler 6) header file. More...
#include <arm_compat.h>
Go to the source code of this file.
Macros | |
#define | __ALIGNED(x) __attribute__((aligned(x))) |
#define | __ASM __asm |
#define | __BKPT(value) __ASM volatile ("bkpt "#value) |
Breakpoint. More... | |
#define | __CMSIS_GCC_OUT_REG(r) "=r" (r) |
#define | __CMSIS_GCC_RW_REG(r) "+r" (r) |
#define | __CMSIS_GCC_USE_REG(r) "r" (r) |
#define | __COMPILER_BARRIER() __ASM volatile("":::"memory") |
#define | __DMB() __builtin_arm_dmb(0xF) |
Data Memory Barrier. More... | |
#define | __DSB() __builtin_arm_dsb(0xF) |
Data Synchronization Barrier. More... | |
#define | __get_FPSCR() ((uint32_t)0U) |
Get FPSCR. More... | |
#define | __INITIAL_SP Image$$ARM_LIB_STACK$$ZI$$Limit |
#define | __INLINE __inline |
#define | __ISB() __builtin_arm_isb(0xF) |
Instruction Synchronization Barrier. More... | |
#define | __NO_RETURN __attribute__((__noreturn__)) |
#define | __NOP __builtin_arm_nop |
No Operation. More... | |
#define | __PACKED __attribute__((packed, aligned(1))) |
#define | __PACKED_STRUCT struct __attribute__((packed, aligned(1))) |
#define | __PACKED_UNION union __attribute__((packed, aligned(1))) |
#define | __PROGRAM_START __main |
#define | __RBIT __builtin_arm_rbit |
Reverse bit order of value. More... | |
#define | __RESTRICT __restrict |
#define | __REV(value) __builtin_bswap32(value) |
Reverse byte order (32 bit) More... | |
#define | __REV16(value) __ROR(__REV(value), 16) |
Reverse byte order (16 bit) More... | |
#define | __REVSH(value) (int16_t)__builtin_bswap16(value) |
Reverse byte order (16 bit) More... | |
#define | __set_FPSCR(x) ((void)(x)) |
Set FPSCR. More... | |
#define | __SEV __builtin_arm_sev |
Send Event. More... | |
#define | __STACK_LIMIT Image$$ARM_LIB_STACK$$ZI$$Base |
#define | __STATIC_FORCEINLINE __attribute__((always_inline)) static __inline |
#define | __STATIC_INLINE static __inline |
#define | __UNALIGNED_UINT16_READ(addr) (((const struct T_UINT16_READ *)(const void *)(addr))->v) |
#define | __UNALIGNED_UINT16_WRITE(addr, val) (void)((((struct T_UINT16_WRITE *)(void *)(addr))->v) = (val)) |
#define | __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v) |
#define | __UNALIGNED_UINT32_READ(addr) (((const struct T_UINT32_READ *)(const void *)(addr))->v) |
#define | __UNALIGNED_UINT32_WRITE(addr, val) (void)((((struct T_UINT32_WRITE *)(void *)(addr))->v) = (val)) |
#define | __USED __attribute__((used)) |
#define | __VECTOR_TABLE __Vectors |
#define | __VECTOR_TABLE_ATTRIBUTE __attribute((used, section("RESET"))) |
#define | __WEAK __attribute__((weak)) |
#define | __WFE __builtin_arm_wfe |
Wait For Event. More... | |
#define | __WFI __builtin_arm_wfi |
Wait For Interrupt. More... | |
Functions | |
struct | __attribute__ ((packed)) T_UINT32 |
__STATIC_FORCEINLINE uint8_t | __CLZ (uint32_t value) |
Count leading zeros. More... | |
__STATIC_INLINE uint32_t | __get_APSR (void) |
Get APSR Register. More... | |
__STATIC_INLINE uint32_t | __get_CONTROL (void) |
Enable IRQ Interrupts. More... | |
__STATIC_INLINE uint32_t | __get_IPSR (void) |
Get IPSR Register. More... | |
__STATIC_INLINE uint32_t | __get_MSP (void) |
Get Main Stack Pointer. More... | |
__STATIC_INLINE uint32_t | __get_PRIMASK (void) |
Get Priority Mask. More... | |
__STATIC_INLINE uint32_t | __get_PSP (void) |
Get Process Stack Pointer. More... | |
__STATIC_INLINE uint32_t | __get_xPSR (void) |
Get xPSR Register. More... | |
__STATIC_FORCEINLINE uint32_t | __ROR (uint32_t op1, uint32_t op2) |
Rotate Right in unsigned value (32 bit) More... | |
__STATIC_INLINE void | __set_CONTROL (uint32_t control) |
Set Control Register. More... | |
__STATIC_INLINE void | __set_MSP (uint32_t topOfMainStack) |
Set Main Stack Pointer. More... | |
__STATIC_INLINE void | __set_PRIMASK (uint32_t priMask) |
Set Priority Mask. More... | |
__STATIC_INLINE void | __set_PSP (uint32_t topOfProcStack) |
Set Process Stack Pointer. More... | |
__STATIC_FORCEINLINE int32_t | __SSAT (int32_t val, uint32_t sat) |
Signed Saturate. More... | |
__STATIC_FORCEINLINE uint32_t | __USAT (int32_t val, uint32_t sat) |
Unsigned Saturate. More... | |
Variables | |
__PACKED_STRUCT | T_UINT16_READ { uint16_t v |
__PACKED_STRUCT | T_UINT16_WRITE { uint16_t v |
__PACKED_STRUCT | T_UINT32_READ { uint32_t v |
__PACKED_STRUCT | T_UINT32_WRITE { uint32_t v |
CMSIS compiler armclang (Arm Compiler 6) header file.
Definition in file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __ALIGNED | ( | x | ) | __attribute__((aligned(x))) |
Definition at line 108 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __ASM __asm |
Definition at line 38 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __COMPILER_BARRIER | ( | ) | __ASM volatile("":::"memory") |
Definition at line 114 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __INITIAL_SP Image$$ARM_LIB_STACK$$ZI$$Limit |
Definition at line 124 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __INLINE __inline |
Definition at line 41 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __NO_RETURN __attribute__((__noreturn__)) |
Definition at line 50 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __PACKED __attribute__((packed, aligned(1))) |
Definition at line 59 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __PACKED_STRUCT struct __attribute__((packed, aligned(1))) |
Definition at line 62 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __PACKED_UNION union __attribute__((packed, aligned(1))) |
Definition at line 65 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __PROGRAM_START __main |
Definition at line 120 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __RESTRICT __restrict |
Definition at line 111 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __STACK_LIMIT Image$$ARM_LIB_STACK$$ZI$$Base |
Definition at line 128 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __STATIC_FORCEINLINE __attribute__((always_inline)) static __inline |
Definition at line 47 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __STATIC_INLINE static __inline |
Definition at line 44 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __UNALIGNED_UINT16_READ | ( | addr | ) | (((const struct T_UINT16_READ *)(const void *)(addr))->v) |
Definition at line 89 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __UNALIGNED_UINT16_WRITE | ( | addr, | |
val | |||
) | (void)((((struct T_UINT16_WRITE *)(void *)(addr))->v) = (val)) |
Definition at line 81 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __UNALIGNED_UINT32 | ( | x | ) | (((struct T_UINT32 *)(x))->v) |
Definition at line 73 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __UNALIGNED_UINT32_READ | ( | addr | ) | (((const struct T_UINT32_READ *)(const void *)(addr))->v) |
Definition at line 105 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __UNALIGNED_UINT32_WRITE | ( | addr, | |
val | |||
) | (void)((((struct T_UINT32_WRITE *)(void *)(addr))->v) = (val)) |
Definition at line 97 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __USED __attribute__((used)) |
Definition at line 53 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __VECTOR_TABLE __Vectors |
Definition at line 132 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __VECTOR_TABLE_ATTRIBUTE __attribute((used, section("RESET"))) |
Definition at line 136 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
#define __WEAK __attribute__((weak)) |
Definition at line 56 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
struct __attribute__ | ( | (packed) | ) |
Definition at line 71 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
__PACKED_STRUCT T_UINT16_READ { uint16_t v |
Definition at line 87 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
__PACKED_STRUCT T_UINT16_WRITE { uint16_t v |
Definition at line 79 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
__PACKED_STRUCT T_UINT32_READ { uint32_t v |
Definition at line 103 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.
__PACKED_STRUCT T_UINT32_WRITE { uint32_t v |
Definition at line 95 of file stm32h735/stm32h735g-dk/Drivers/CMSIS/Include/cmsis_armclang.h.