aboutsummaryrefslogtreecommitdiff
path: root/KSDK_1.2.0/usb/usb_core/include/compiler.h
blob: 3741e16df0801854c4b80e64156e6e3edccf854a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**HEADER********************************************************************
 *
 * Copyright (c) 2013 Freescale Semiconductor;
 * All Rights Reserved
 *
 *
 ***************************************************************************
 *
 * THIS SOFTWARE IS PROVIDED BY FREESCALE "AS IS" AND ANY EXPRESSED OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL FREESCALE OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 *
 **************************************************************************
 *
 * $FileName: compiler.h$
 * $Version : 
 * $Date    : 
 *
 * Comments:
 *
 *   This file defines compiler related MACRO
 *
 *END************************************************************************/
#ifndef __compiler_h__
#define __compiler_h__ 1

#ifdef __cplusplus
extern "C"
{
#endif
#if ((defined __CWCC__)||(defined __GNUC__))
#ifndef PACKED_STRUCT_BEGIN
#define PACKED_STRUCT_BEGIN
#endif

#ifndef PACKED_STRUCT_END
#define PACKED_STRUCT_END     __attribute__((__packed__))
#endif

#ifndef PACKED_UNION_BEGIN
#define PACKED_UNION_BEGIN
#endif

#ifndef PACKED_UNION_END
#define PACKED_UNION_END      __attribute__((__packed__))
#endif

#ifndef _WEAK_FUNCTION
#define _WEAK_FUNCTION(x)     __attribute__((weak)) x
#endif

#ifndef _WEAK_SYMBOL
#define _WEAK_SYMBOL(x)     x __attribute__((weak))
#endif

#elif (defined __IAR_SYSTEMS_ICC__)

#ifndef PACKED_STRUCT_BEGIN
#define PACKED_STRUCT_BEGIN   __packed
#endif

#ifndef PACKED_STRUCT_END
#define PACKED_STRUCT_END
#endif

#ifndef PACKED_UNION_BEGIN
#define PACKED_UNION_BEGIN
#endif

#ifndef PACKED_UNION_END
#define PACKED_UNION_END      __packed
#endif

#ifndef _WEAK_FUNCTION
#define _WEAK_FUNCTION(x)     __weak x
#endif

#ifndef _WEAK_SYMBOL
#define _WEAK_SYMBOL(x)     __weak x
#endif
    
#elif (defined __CC_ARM)

#ifndef PACKED_STRUCT_BEGIN
#define PACKED_STRUCT_BEGIN   _Pragma("pack(1)")
#endif

#ifndef PACKED_STRUCT_END
#define PACKED_STRUCT_END    _Pragma("pack()")
#endif

#ifndef PACKED_UNION_BEGIN
#define PACKED_UNION_BEGIN    _Pragma("pack()")
#endif

#ifndef PACKED_UNION_END
#define PACKED_UNION_END    _Pragma("pack()")
#endif

#ifndef _WEAK_FUNCTION
#define _WEAK_FUNCTION(x)     __weak x
#endif

#ifndef _WEAK_SYMBOL
#define _WEAK_SYMBOL(x)     __weak x
#endif
    
#endif  

#ifdef __cplusplus
}
#endif

#endif