Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
IAR_Platform.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_PLATFORM_IAR_PLATFORM_H
37#define IMT_BASE_CORE_PLATFORM_IAR_PLATFORM_H
38
39// AXIVION FILE Style AutosarC++19_03-A2.8.1: File provides global configuration constants and defines.
40// AXIVION File Style AutosarC++19_03-A16.7.1: pragma allowed in this file because is compiler specific
41// AXIVION File Style AutosarC++19_03-A17.0.1: definition of reserved identifiers (__*) required in this file
42// AXIVION File Style CodingStyle-Naming.Function: specialties or iar specific naming
43// AXIVION File Style CodingStyle-Naming.Macro: specialties or iar specific naming
44
45// Check target device
46// AXIVION File Style AutosarC++19_03-A16.6.1: error required here, static_assert as alternative not possible
47#if !defined(__ICCARM__) // Cross compiler for arm
48#error Target Device not supported!
49#endif // __ICCARM__
50
51// Enable using type limitations
52#if !defined(__STDC_LIMIT_MACROS)
53#define __STDC_LIMIT_MACROS
54#endif
55
56// Platform specific includes
57#include <cassert>
58#include <climits>
59#include <cstddef>
60#include <cstdint>
61#include <cfloat>
62#include <cstring>
63
64// IAR intrinsics
66#include <intrinsics.h>
67
68// GCC Specific keywords used by Imt.Base framework
69#define __DATAFLOW_ASM(x) asm volatile(x)
70#define __DATAFLOW_ROOT // no supported in GNU
71
72#if defined(__ARM6T2__)
73#define __DATAFLOW_CLZ(x) __CLZ(x)
74#else
75#define __DATAFLOW_CLZ(x) ::imt::base::core::platform::countLeadingZeros(x)
76#endif
77
78// STM HAL specific defines
79#define __IAR_FT _Pragma("inline=forced") __intrinsic
80#ifndef __UNALIGNED_UINT32_READ
81#pragma language = save
82#pragma language = extended
83// AXIVION Next Routine AutosarC++19_03-M7.3.1: in global namespace to be similar as the same function in CMSIS
84__IAR_FT uint32_t __iar_uint32_read(void const* const ptr) {
85 // AXIVION Next Codeline AutosarC++19_03-A5.3.2: responsibility of the caller here to not call with a nullptr
86 // AXIVION Next Codeline AutosarC++19_03-M5.2.8: conversion from void-ptr to int-ptr required then interface with void* has to be similar as the same function in CMSIS
87 // AXIVION Next Codeline AutosarC++19_03-A5.2.4: reinterpret cast required here because of void-ptr
88 return *reinterpret_cast<__packed uint32_t const*>(ptr);
89}
90#pragma language = restore
91
92#define __UNALIGNED_UINT32_READ(PTR) __iar_uint32_read(PTR)
93#endif
94
95#ifndef __UNALIGNED_UINT32_WRITE
96#pragma language = save
97#pragma language = extended
98// AXIVION Next Routine AutosarC++19_03-M7.3.1: in global namespace to be similar as the same function in CMSIS
99__IAR_FT void __iar_uint32_write(void* const ptr, uint32_t const val) {
100 // AXIVION Next Codeline AutosarC++19_03-A5.3.2: responsibility of the caller here to not call with a nullptr
101 // AXIVION Next Codeline AutosarC++19_03-M5.2.8: conversion from void-ptr to int-ptr required then interface with void* has to be similar as the same function in CMSIS
102 // AXIVION Next Codeline AutosarC++19_03-A5.2.4: reinterpret cast required here because of void-ptr
103 *reinterpret_cast<__packed uint32_t*>(ptr) = val;
104}
105#pragma language = restore
106
107#define __UNALIGNED_UINT32_WRITE(PTR, VAL) __iar_uint32_write(PTR, VAL)
108#endif
109
110#endif // IMT_BASE_CORE_PLATFORM_IAR_PLATFORM_H
#define __IAR_FT
__IAR_FT uint32_t __iar_uint32_read(void const *const ptr)
__IAR_FT void __iar_uint32_write(void *const ptr, uint32_t const val)
unsigned __int32 uint32_t
Definition stdint.h:64