2005-04-08 15:01:17 +00:00
|
|
|
#ifndef COMPILER_H
|
|
|
|
#define COMPILER_H
|
|
|
|
|
2005-05-18 14:42:02 +00:00
|
|
|
/*
|
|
|
|
* Doxygen can't cope with some of the more esoteric areas of C, so we
|
|
|
|
* make its life simpler.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef DOXYGEN
|
2005-05-18 15:02:23 +00:00
|
|
|
#define __attribute__(x)
|
2005-05-18 14:42:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We export the symbol obj_OBJECT (OBJECT is defined on command-line)
|
2005-04-08 15:01:17 +00:00
|
|
|
* as a global symbol, so that the linker can drag in selected object
|
|
|
|
* files from the library using -u obj_OBJECT.
|
|
|
|
*
|
|
|
|
* Not quite sure why cpp requires two levels of macro call in order
|
|
|
|
* to actually expand OBJECT...
|
|
|
|
*/
|
|
|
|
#undef _H1
|
|
|
|
#define _H1( x, y ) x ## y
|
|
|
|
#undef _H2
|
|
|
|
#define _H2( x, y ) _H1 ( x, y )
|
2005-04-27 11:59:37 +00:00
|
|
|
#define PREFIX_OBJECT(prefix) _H2 ( prefix, OBJECT )
|
|
|
|
#define OBJECT_SYMBOL PREFIX_OBJECT(obj_)
|
2005-04-08 15:01:17 +00:00
|
|
|
#undef _STR
|
|
|
|
#define _STR(s) #s
|
|
|
|
#undef _XSTR
|
|
|
|
#define _XSTR(s) _STR(s)
|
|
|
|
#define OBJECT_SYMBOL_STR _XSTR ( OBJECT_SYMBOL )
|
|
|
|
|
|
|
|
#ifdef ASSEMBLY
|
|
|
|
|
|
|
|
.globl OBJECT_SYMBOL
|
|
|
|
.equ OBJECT_SYMBOL, 0
|
|
|
|
|
|
|
|
#else /* ASSEMBLY */
|
|
|
|
|
|
|
|
__asm__ ( ".globl\t" OBJECT_SYMBOL_STR );
|
|
|
|
__asm__ ( ".equ\t" OBJECT_SYMBOL_STR ", 0" );
|
|
|
|
|
2005-04-14 11:35:45 +00:00
|
|
|
/*
|
|
|
|
* Macro to allow objects to explicitly drag in other objects by
|
|
|
|
* object name. Used by config.c.
|
|
|
|
*
|
|
|
|
*/
|
2005-04-08 15:01:17 +00:00
|
|
|
#define REQUIRE_OBJECT(object) \
|
|
|
|
__asm__ ( ".equ\tneed_" #object ", obj_" #object );
|
|
|
|
|
2005-04-14 11:35:45 +00:00
|
|
|
/*
|
|
|
|
* If debug_OBJECT is set to a true value, the macro DBG(...) will
|
|
|
|
* expand to printf(...) when compiling OBJECT, and the symbol
|
2005-04-25 16:28:07 +00:00
|
|
|
* DEBUG_LEVEL will be inserted into the object file.
|
2005-04-14 11:35:45 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-04-27 11:59:37 +00:00
|
|
|
#define DEBUG_SYMBOL PREFIX_OBJECT(debug_)
|
2005-04-25 16:28:07 +00:00
|
|
|
|
2005-04-14 11:35:45 +00:00
|
|
|
#if DEBUG_SYMBOL
|
2005-04-17 10:25:06 +00:00
|
|
|
#include "console.h"
|
2005-04-14 11:35:45 +00:00
|
|
|
#define DEBUG_SYMBOL_STR _XSTR ( DEBUG_SYMBOL )
|
2005-04-25 16:28:07 +00:00
|
|
|
__asm__ ( ".equ\tDEBUG_LEVEL, " DEBUG_SYMBOL_STR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DBG_PRINT(...) printf ( __VA_ARGS__ )
|
|
|
|
#define DBG_DISCARD(...)
|
|
|
|
#define DBG DBG_DISCARD
|
|
|
|
#define DBG2 DBG_DISCARD
|
|
|
|
|
|
|
|
#if DEBUG_SYMBOL >= 1
|
|
|
|
#undef DBG
|
|
|
|
#define DBG DBG_PRINT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DEBUG_SYMBOL >= 2
|
|
|
|
#undef DBG2
|
|
|
|
#define DBG2 DBG_PRINT
|
2005-04-14 11:35:45 +00:00
|
|
|
#endif
|
|
|
|
|
2005-05-13 10:18:21 +00:00
|
|
|
/*
|
|
|
|
* ASSERT() macros
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define ASSERT(x)
|
|
|
|
|
|
|
|
#if DEBUG_SYMBOL >= 1
|
|
|
|
#undef ASSERT
|
|
|
|
#define ASSERT(x) \
|
|
|
|
do { \
|
|
|
|
if ( ! (x) ) { \
|
|
|
|
DBG ( "ASSERT(%s) failed at %s line %d [%s]\n", #x, \
|
|
|
|
__FILE__, __LINE__, __FUNCTION__ ); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2005-05-17 12:16:28 +00:00
|
|
|
/*
|
|
|
|
* Commonly-used attributes.
|
|
|
|
*
|
|
|
|
* Note that __used can be used only for functions. If you have a
|
|
|
|
* static variable declaration that you want to force to be included,
|
|
|
|
* use __unused.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define PACKED __attribute__ (( packed ))
|
|
|
|
#define __unused __attribute__ (( unused ))
|
|
|
|
#define __used __attribute__ (( used ))
|
|
|
|
#define __aligned __attribute__ (( aligned ( 16 ) ))
|
2005-04-08 15:01:17 +00:00
|
|
|
|
2005-05-02 16:21:52 +00:00
|
|
|
/*
|
|
|
|
* To save space in the binary when multiple-driver images are
|
|
|
|
* compiled, uninitialised data areas can be shared between drivers.
|
|
|
|
* This will typically be used to share statically-allocated receive
|
|
|
|
* and transmit buffers between drivers.
|
|
|
|
*
|
|
|
|
* Use as e.g.
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* char rx_buf[NUM_RX_BUF][RX_BUF_SIZE];
|
|
|
|
* char tx_buf[TX_BUF_SIZE];
|
|
|
|
* } my_static_data __shared;
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-05-03 09:02:24 +00:00
|
|
|
#define __shared __asm__ ( "_shared_bss" )
|
2005-05-02 16:21:52 +00:00
|
|
|
|
2005-04-08 15:01:17 +00:00
|
|
|
#endif /* ASSEMBLY */
|
|
|
|
|
|
|
|
#endif /* COMPILER_H */
|