Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
TARGET_RBLAB_BLENANO/compiler_abstraction.h@97:433970e64889, 2015-04-14 (annotated)
- Committer:
- Kojto
- Date:
- Tue Apr 14 10:58:58 2015 +0200
- Revision:
- 97:433970e64889
- Parent:
- 91:031413cf7a89
Release 97 of the mbed library
Changes:
- NRF51 - Update Softdevice, fix us ticker
- MTS Dragonfly - bugfixes, IAR support
- MTS mdot - bootloader support
- RZ_A1 - nvic wrapper
- STM F3xx, F4xx - hal reorganization
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 97:433970e64889 | 1 | /* Copyright (c) 2013, Nordic Semiconductor ASA |
Kojto | 97:433970e64889 | 2 | * All rights reserved. |
Kojto | 97:433970e64889 | 3 | * |
Kojto | 97:433970e64889 | 4 | * Redistribution and use in source and binary forms, with or without |
Kojto | 97:433970e64889 | 5 | * modification, are permitted provided that the following conditions are met: |
Kojto | 97:433970e64889 | 6 | * |
Kojto | 97:433970e64889 | 7 | * * Redistributions of source code must retain the above copyright notice, this |
Kojto | 97:433970e64889 | 8 | * list of conditions and the following disclaimer. |
Kojto | 97:433970e64889 | 9 | * |
Kojto | 97:433970e64889 | 10 | * * Redistributions in binary form must reproduce the above copyright notice, |
Kojto | 97:433970e64889 | 11 | * this list of conditions and the following disclaimer in the documentation |
Kojto | 97:433970e64889 | 12 | * and/or other materials provided with the distribution. |
Kojto | 91:031413cf7a89 | 13 | * |
Kojto | 97:433970e64889 | 14 | * * Neither the name of Nordic Semiconductor ASA nor the names of its |
Kojto | 97:433970e64889 | 15 | * contributors may be used to endorse or promote products derived from |
Kojto | 97:433970e64889 | 16 | * this software without specific prior written permission. |
Kojto | 91:031413cf7a89 | 17 | * |
Kojto | 97:433970e64889 | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
Kojto | 97:433970e64889 | 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
Kojto | 97:433970e64889 | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
Kojto | 97:433970e64889 | 21 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
Kojto | 97:433970e64889 | 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Kojto | 97:433970e64889 | 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
Kojto | 97:433970e64889 | 24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
Kojto | 97:433970e64889 | 25 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
Kojto | 97:433970e64889 | 26 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
Kojto | 97:433970e64889 | 27 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Kojto | 91:031413cf7a89 | 28 | * |
Kojto | 91:031413cf7a89 | 29 | */ |
Kojto | 91:031413cf7a89 | 30 | #ifndef _COMPILER_ABSTRACTION_H |
Kojto | 91:031413cf7a89 | 31 | #define _COMPILER_ABSTRACTION_H |
Kojto | 91:031413cf7a89 | 32 | |
Kojto | 91:031413cf7a89 | 33 | /*lint ++flb "Enter library region" */ |
Kojto | 91:031413cf7a89 | 34 | |
Kojto | 91:031413cf7a89 | 35 | #if defined ( __CC_ARM ) |
Kojto | 97:433970e64889 | 36 | |
Kojto | 97:433970e64889 | 37 | #ifndef __ASM |
Kojto | 97:433970e64889 | 38 | #define __ASM __asm /*!< asm keyword for ARM Compiler */ |
Kojto | 97:433970e64889 | 39 | #endif |
Kojto | 97:433970e64889 | 40 | |
Kojto | 97:433970e64889 | 41 | #ifndef __INLINE |
Kojto | 97:433970e64889 | 42 | #define __INLINE __inline /*!< inline keyword for ARM Compiler */ |
Kojto | 97:433970e64889 | 43 | #endif |
Kojto | 97:433970e64889 | 44 | |
Kojto | 97:433970e64889 | 45 | #ifndef __WEAK |
Kojto | 97:433970e64889 | 46 | #define __WEAK __weak /*!< weak keyword for ARM Compiler */ |
Kojto | 97:433970e64889 | 47 | #endif |
Kojto | 97:433970e64889 | 48 | |
Kojto | 97:433970e64889 | 49 | #define GET_SP() __current_sp() /*!> read current SP function for ARM Compiler */ |
Kojto | 91:031413cf7a89 | 50 | |
Kojto | 97:433970e64889 | 51 | #elif defined ( __ICCARM__ ) |
Kojto | 97:433970e64889 | 52 | |
Kojto | 97:433970e64889 | 53 | #ifndef __ASM |
Kojto | 97:433970e64889 | 54 | #define __ASM __asm /*!< asm keyword for IAR Compiler */ |
Kojto | 97:433970e64889 | 55 | #endif |
Kojto | 97:433970e64889 | 56 | |
Kojto | 97:433970e64889 | 57 | #ifndef __INLINE |
Kojto | 97:433970e64889 | 58 | #define __INLINE inline /*!< inline keyword for IAR Compiler. Only available in High optimization mode! */ |
Kojto | 97:433970e64889 | 59 | #endif |
Kojto | 97:433970e64889 | 60 | |
Kojto | 97:433970e64889 | 61 | #ifndef __WEAK |
Kojto | 97:433970e64889 | 62 | #define __WEAK __weak /*!> define weak function for IAR Compiler */ |
Kojto | 97:433970e64889 | 63 | #endif |
Kojto | 97:433970e64889 | 64 | |
Kojto | 97:433970e64889 | 65 | #define GET_SP() __get_SP() /*!> read current SP function for IAR Compiler */ |
Kojto | 97:433970e64889 | 66 | |
Kojto | 97:433970e64889 | 67 | #elif defined ( __GNUC__ ) |
Kojto | 97:433970e64889 | 68 | |
Kojto | 97:433970e64889 | 69 | #ifndef __ASM |
Kojto | 97:433970e64889 | 70 | #define __ASM __asm /*!< asm keyword for GNU Compiler */ |
Kojto | 97:433970e64889 | 71 | #endif |
Kojto | 97:433970e64889 | 72 | |
Kojto | 97:433970e64889 | 73 | #ifndef __INLINE |
Kojto | 97:433970e64889 | 74 | #define __INLINE inline /*!< inline keyword for GNU Compiler */ |
Kojto | 97:433970e64889 | 75 | #endif |
Kojto | 97:433970e64889 | 76 | |
Kojto | 97:433970e64889 | 77 | #ifndef __WEAK |
Kojto | 97:433970e64889 | 78 | #define __WEAK __attribute__((weak)) /*!< weak keyword for GNU Compiler */ |
Kojto | 97:433970e64889 | 79 | #endif |
Kojto | 97:433970e64889 | 80 | |
Kojto | 97:433970e64889 | 81 | #define GET_SP() gcc_current_sp() /*!> read current SP function for GNU Compiler */ |
Kojto | 91:031413cf7a89 | 82 | |
Kojto | 97:433970e64889 | 83 | static inline unsigned int gcc_current_sp(void) |
Kojto | 97:433970e64889 | 84 | { |
Kojto | 97:433970e64889 | 85 | register unsigned sp asm("sp"); |
Kojto | 97:433970e64889 | 86 | return sp; |
Kojto | 97:433970e64889 | 87 | } |
Kojto | 97:433970e64889 | 88 | |
Kojto | 97:433970e64889 | 89 | #elif defined ( __TASKING__ ) |
Kojto | 97:433970e64889 | 90 | |
Kojto | 97:433970e64889 | 91 | #ifndef __ASM |
Kojto | 97:433970e64889 | 92 | #define __ASM __asm /*!< asm keyword for TASKING Compiler */ |
Kojto | 97:433970e64889 | 93 | #endif |
Kojto | 97:433970e64889 | 94 | |
Kojto | 97:433970e64889 | 95 | #ifndef __INLINE |
Kojto | 97:433970e64889 | 96 | #define __INLINE inline /*!< inline keyword for TASKING Compiler */ |
Kojto | 97:433970e64889 | 97 | #endif |
Kojto | 97:433970e64889 | 98 | |
Kojto | 97:433970e64889 | 99 | #ifndef __WEAK |
Kojto | 97:433970e64889 | 100 | #define __WEAK __attribute__((weak)) /*!< weak keyword for TASKING Compiler */ |
Kojto | 97:433970e64889 | 101 | #endif |
Kojto | 97:433970e64889 | 102 | |
Kojto | 97:433970e64889 | 103 | #define GET_SP() __get_MSP() /*!> read current SP function for TASKING Compiler */ |
Kojto | 97:433970e64889 | 104 | |
Kojto | 91:031413cf7a89 | 105 | #endif |
Kojto | 91:031413cf7a89 | 106 | |
Kojto | 91:031413cf7a89 | 107 | /*lint --flb "Leave library region" */ |
Kojto | 91:031413cf7a89 | 108 | |
Kojto | 91:031413cf7a89 | 109 | #endif |