120 lines
3.1 KiB
C
120 lines
3.1 KiB
C
/**
|
|
****************************************************************************************
|
|
*
|
|
* @file gnuarm/compiler.h
|
|
*
|
|
* @brief Definitions of compiler specific directives.
|
|
*
|
|
* Copyright (C) RivieraWaves 2009-2015
|
|
*
|
|
*
|
|
****************************************************************************************
|
|
*/
|
|
#if 0
|
|
#ifndef _COMPILER_H_
|
|
#define _COMPILER_H_
|
|
|
|
/// define the static keyword for this compiler
|
|
#ifdef CFG_STATIC
|
|
#define __STATIC static
|
|
#else // CFG_STATIC
|
|
#define __STATIC
|
|
#endif // CFG_STATIC
|
|
|
|
/// define the force inlining attribute for this compiler
|
|
#define __INLINE static __attribute__((__always_inline__)) inline
|
|
|
|
/// define the IRQ handler attribute for this compiler
|
|
#define __IRQ __attribute__((__interrupt__("IRQ")))
|
|
|
|
/// define the BLE IRQ handler attribute for this compiler
|
|
#define __BTIRQ
|
|
|
|
/// define the BLE IRQ handler attribute for this compiler
|
|
#define __BLEIRQ
|
|
|
|
/// define the FIQ handler attribute for this compiler
|
|
#define __FIQ __attribute__((__interrupt__("FIQ")))
|
|
|
|
/// define size of an empty array (used to declare structure with an array size not defined)
|
|
#define __ARRAY_EMPTY
|
|
|
|
/// Function returns struct in registers (4 in rvds, var with gnuarm).
|
|
/// With Gnuarm, feature depends on command line options and
|
|
/// impacts ALL functions returning 2-words max structs
|
|
/// (check -freg-struct-return and -mabi=xxx)
|
|
#define __VIR
|
|
|
|
/// function has no side effect and return depends only on arguments
|
|
#define __PURE __attribute__((const))
|
|
|
|
/// Align instantiated lvalue or struct member on 4 bytes
|
|
#define __ALIGN4 __attribute__((aligned(4)))
|
|
|
|
/// __MODULE__ comes from the RVDS compiler that supports it
|
|
//#define __MODULE__ __BASE_FILE__
|
|
|
|
/// Pack a structure field
|
|
#define __PACKED __attribute__ ((__packed__))
|
|
|
|
/// Put a variable in a memory maintained during deep sleep
|
|
#define __LOWPOWER_SAVED
|
|
|
|
#endif // _COMPILER_H_
|
|
|
|
#endif
|
|
|
|
/**
|
|
****************************************************************************************
|
|
*
|
|
* @file rvds/compiler.h
|
|
*
|
|
* @brief Definitions of compiler specific directives.
|
|
*
|
|
* Copyright (C) RivieraWaves 2009-2015
|
|
*
|
|
*
|
|
****************************************************************************************
|
|
*/
|
|
|
|
#ifndef _COMPILER_H_
|
|
#define _COMPILER_H_
|
|
|
|
#include "xc6xxx.h"
|
|
|
|
#ifndef __ARMCC_VERSION
|
|
#error "File only included with RVDS!"
|
|
#endif // __ARMCC_VERSION
|
|
|
|
/// define the static keyword for this compiler
|
|
//#ifdef CFG_STATIC
|
|
//#define __STATIC static
|
|
//#else // CFG_STATIC
|
|
//#define __STATIC
|
|
//#endif // CFG_STATIC
|
|
#define __STATIC
|
|
|
|
/// define the force inlining attribute for this compiler
|
|
//#define __INLINE __forceinline static
|
|
|
|
/// define the IRQ handler attribute for this compiler
|
|
#define __IRQ __irq
|
|
|
|
/// define the BLE IRQ handler attribute for this compiler
|
|
#define __BTIRQ
|
|
|
|
/// define the BLE IRQ handler attribute for this compiler
|
|
#define __BLEIRQ
|
|
|
|
/// define the FIQ handler attribute for this compiler
|
|
#define __FIQ __irq
|
|
|
|
/// define size of an empty array (used to declare structure with an array size not defined)
|
|
#define __ARRAY_EMPTY
|
|
|
|
/// Put a variable in a memory maintained during deep sleep
|
|
#define __LOWPOWER_SAVED
|
|
|
|
#endif // _COMPILER_H_
|
|
|