36#ifndef IMT_BASE_CORE_PLATFORM_IAR_PLATFORM_H
37#define IMT_BASE_CORE_PLATFORM_IAR_PLATFORM_H
47#if !defined(__ICCARM__)
48#error Target Device not supported!
52#if !defined(__STDC_LIMIT_MACROS)
53#define __STDC_LIMIT_MACROS
66#include <intrinsics.h>
69#define __DATAFLOW_ASM(x) asm volatile(x)
70#define __DATAFLOW_ROOT
72#if defined(__ARM6T2__)
73#define __DATAFLOW_CLZ(x) __CLZ(x)
75#define __DATAFLOW_CLZ(x) ::imt::base::core::platform::countLeadingZeros(x)
79#define __IAR_FT _Pragma("inline=forced") __intrinsic
80#ifndef __UNALIGNED_UINT32_READ
81#pragma language = save
82#pragma language = extended
88 return *
reinterpret_cast<__packed
uint32_t const*
>(ptr);
90#pragma language = restore
92#define __UNALIGNED_UINT32_READ(PTR) __iar_uint32_read(PTR)
95#ifndef __UNALIGNED_UINT32_WRITE
96#pragma language = save
97#pragma language = extended
103 *
reinterpret_cast<__packed
uint32_t*
>(ptr) = val;
105#pragma language = restore
107#define __UNALIGNED_UINT32_WRITE(PTR, VAL) __iar_uint32_write(PTR, VAL)
unsigned __int32 uint32_t