added sgemm_ncopy routine and made some improvements on cgemm_kernel for ARMV7
[platform/upstream/openblas.git] / common_arm.h
1 /*****************************************************************************
2 Copyright (c) 2011, Lab of Parallel Software and Computational Science,ICSAS
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8
9    1. Redistributions of source code must retain the above copyright
10       notice, this list of conditions and the following disclaimer.
11
12    2. Redistributions in binary form must reproduce the above copyright
13       notice, this list of conditions and the following disclaimer in
14       the documentation and/or other materials provided with the
15       distribution.
16    3. Neither the name of the ISCAS nor the names of its contributors may 
17       be used to endorse or promote products derived from this software 
18       without specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
25 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
26 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
27 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
28 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 
29 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 **********************************************************************************/
32
33 /*********************************************************************/
34 /* Copyright 2009, 2010 The University of Texas at Austin.           */
35 /* All rights reserved.                                              */
36 /*                                                                   */
37 /* Redistribution and use in source and binary forms, with or        */
38 /* without modification, are permitted provided that the following   */
39 /* conditions are met:                                               */
40 /*                                                                   */
41 /*   1. Redistributions of source code must retain the above         */
42 /*      copyright notice, this list of conditions and the following  */
43 /*      disclaimer.                                                  */
44 /*                                                                   */
45 /*   2. Redistributions in binary form must reproduce the above      */
46 /*      copyright notice, this list of conditions and the following  */
47 /*      disclaimer in the documentation and/or other materials       */
48 /*      provided with the distribution.                              */
49 /*                                                                   */
50 /*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
51 /*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
52 /*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
53 /*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
54 /*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
55 /*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
56 /*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
57 /*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
58 /*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
59 /*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
60 /*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
61 /*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
62 /*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
63 /*    POSSIBILITY OF SUCH DAMAGE.                                    */
64 /*                                                                   */
65 /* The views and conclusions contained in the software and           */
66 /* documentation are those of the authors and should not be          */
67 /* interpreted as representing official policies, either expressed   */
68 /* or implied, of The University of Texas at Austin.                 */
69 /*********************************************************************/
70
71 #ifndef COMMON_ARM
72 #define COMMON_ARM
73
74 #define MB
75 #define WMB
76
77 #define INLINE inline
78
79 #define RETURN_BY_COMPLEX
80
81 #ifndef ASSEMBLER
82
83 static void __inline blas_lock(volatile BLASULONG *address){
84
85   int register ret;
86
87   do {
88     while (*address) {YIELDING;};
89
90     __asm__ __volatile__(
91                          "ldrex r2, [%1]                                                \n\t"
92                          "mov   r2, #0                                                  \n\t"
93                          "strex r3, r2, [%1]                                            \n\t"
94                          "mov   %0 , r3                                                 \n\t"
95                          : "=r"(ret), "=r"(address)
96                          : "1"(address)
97                          : "memory", "r2" , "r3" 
98
99
100     );
101
102   } while (ret);
103
104 }
105
106
107 static inline BLASULONG rpcc(void){
108   BLASULONG ret=0;
109   struct timeval tv;
110   gettimeofday(&tv,NULL);
111   ret=1000000* tv.tv_sec + tv.tv_usec;
112   return ret;
113 }
114
115 static inline int blas_quickdivide(blasint x, blasint y){
116   return x / y;
117 }
118
119 #if defined(DOUBLE)
120 #define GET_IMAGE(res)  __asm__ __volatile__("vstr.f64 d1, %0" : "=m"(res) : : "memory")
121 #else
122 #define GET_IMAGE(res)  __asm__ __volatile__("vstr.f32 s1, %0" : "=m"(res) : : "memory")
123 #endif
124
125 #define GET_IMAGE_CANCEL
126
127 #endif
128
129
130 #ifndef F_INTERFACE
131 #define REALNAME ASMNAME
132 #else
133 #define REALNAME ASMFNAME
134 #endif
135
136 #if defined(ASSEMBLER) && !defined(NEEDPARAM)
137
138 #define PROLOGUE \
139         .arm             ;\
140         .global REALNAME ;\
141         .func   REALNAME  ;\
142 REALNAME:
143
144 #define EPILOGUE 
145
146 #define PROFCODE
147
148 #endif
149
150
151 #define SEEK_ADDRESS
152
153 #ifndef PAGESIZE
154 #define PAGESIZE        ( 4 << 10)
155 #endif
156 #define HUGE_PAGESIZE   ( 4 << 20)
157
158 #define BUFFER_SIZE     (16 << 20)
159
160
161 #define BASE_ADDRESS (START_ADDRESS - BUFFER_SIZE * MAX_CPU_NUMBER)
162
163 #ifndef MAP_ANONYMOUS
164 #define MAP_ANONYMOUS MAP_ANON
165 #endif
166
167 #endif