Merge branch 'loongson3a' of github.com:xianyi/OpenBLAS into loongson3b
[platform/upstream/openblas.git] / common_mips64.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_MIPS64
72 #define COMMON_MIPS64
73
74 #define MB
75 #define WMB
76
77 #define INLINE inline
78
79 #ifndef ASSEMBLER
80
81 static void INLINE blas_lock(volatile unsigned long *address){
82
83   long int ret, val = 1;
84
85   do {
86     while (*address) {YIELDING;};
87
88     __asm__ __volatile__(
89                          "1:    ll      %0, %3\n"
90                          "      ori     %2, %0, 1\n"
91                          "      sc      %2, %1\n"
92                          "      beqz    %2, 1b\n"
93                          "       andi   %2, %0, 1\n"
94                          "      sync\n"
95                          : "=&r" (val), "=m" (address), "=&r" (ret)
96                          : "m" (address)
97                          : "memory");
98
99   } while (ret);
100 }
101
102 static inline unsigned int rpcc(void){
103   unsigned long ret;
104 #if defined(LOONGSON3A) 
105   unsigned long long tmp;
106   __asm__ __volatile__("dmfc0 %0, $25, 1": "=r"(tmp):: "memory");
107   ret=tmp;
108 #elif defined(LOONGSON3B)
109   //Temp Implementation.
110   return 1;
111 #else
112   __asm__ __volatile__(".set   push    \n"                                     
113           ".set   mips32r2\n"                                                  
114           "rdhwr %0, $30  \n"                                                  
115           ".set pop" : "=r"(ret) : : "memory");
116 #endif
117   return ret;
118 }
119
120 static inline int blas_quickdivide(blasint x, blasint y){
121   return x / y;
122 }
123
124 #ifdef DOUBLE
125 #define GET_IMAGE(res)  __asm__ __volatile__("mov.d %0, $f2" : "=f"(res)  : : "memory")
126 #else
127 #define GET_IMAGE(res)  __asm__ __volatile__("mov.s %0, $f2" : "=f"(res)  : : "memory")
128 #endif
129
130 #define GET_IMAGE_CANCEL
131
132 #endif
133
134
135 #ifdef ASSEMBLER
136
137 #define HALT    teq     $0, $0
138 #define NOP     move    $0, $0
139
140 #ifdef DOUBLE
141 #define LD      ldc1
142 #define ST      sdc1
143 #define MADD    madd.d
144 #define NMADD   nmadd.d
145 #define MSUB    msub.d
146 #define NMSUB   nmsub.d
147 #define ADD     add.d
148 #define SUB     sub.d
149 #define MUL     mul.d
150 #define MOV     mov.d
151 #define CMOVF   movf.d
152 #define CMOVT   movt.d
153 #define MTC     dmtc1
154 #define FABS    abs.d
155 #define CMPEQ   c.eq.d
156 #define CMPLE   c.le.d
157 #define CMPLT   c.lt.d
158 #define NEG     neg.d
159 #else
160 #define LD      lwc1
161 #define ST      swc1
162 #define MADD    madd.s
163 #define NMADD   nmadd.s
164 #define MSUB    msub.s
165 #define NMSUB   nmsub.s
166 #define ADD     add.s
167 #define SUB     sub.s
168 #define MUL     mul.s
169 #define MOV     mov.s
170 #define CMOVF   movf.s
171 #define CMOVT   movt.s
172 #define MTC     mtc1
173 #define FABS    abs.s
174 #define CMPEQ   c.eq.s
175 #define CMPLE   c.le.s
176 #define CMPLT   c.lt.s
177 #define PLU     plu.ps                                                    
178 #define PLL     pll.ps   
179 #define PUU     puu.ps    
180 #define PUL     pul.ps   
181 #define MADPS   madd.ps   
182 #define CVTU    cvt.s.pu    
183 #define CVTL    cvt.s.pl 
184 #define NEG     neg.s
185 #endif
186
187 #if   defined(__64BIT__) &&  defined(USE64BITINT)
188 #define LDINT   ld
189 #define LDARG   ld
190 #define SDARG   sd
191 #elif defined(__64BIT__) && !defined(USE64BITINT)
192 #define LDINT   lw
193 #define LDARG   ld
194 #define SDARG   sd
195 #else
196 #define LDINT   lw
197 #define LDARG   lw
198 #define SDARG   sw
199 #endif
200
201
202 #ifndef F_INTERFACE
203 #define REALNAME ASMNAME
204 #else
205 #define REALNAME ASMFNAME
206 #endif
207
208 #if defined(ASSEMBLER) && !defined(NEEDPARAM)
209
210 #define PROLOGUE \
211         .text ;\
212         .set    mips64 ;\
213         .align 5 ;\
214         .globl  REALNAME ;\
215         .ent    REALNAME ;\
216         .type   REALNAME, @function ;\
217 REALNAME: ;\
218         .set    noreorder ;\
219         .set    nomacro
220
221 #define EPILOGUE \
222         .set    macro ;\
223         .set    reorder ;\
224         .end    REALNAME
225
226 #define PROFCODE
227 #endif
228
229 #endif
230
231 #define SEEK_ADDRESS
232
233 #define BUFFER_SIZE     ( 32 << 20)
234
235 #if defined(LOONGSON3A)
236 #define PAGESIZE        (16UL << 10)
237 #define FIXED_PAGESIZE  (16UL << 10)
238 #endif
239
240 #if defined(LOONGSON3B)
241 #define PAGESIZE        (16UL << 10)
242 #define FIXED_PAGESIZE  (16UL << 10)
243 #endif
244
245 #ifndef PAGESIZE
246 #define PAGESIZE        (64UL << 10)
247 #endif
248 #define HUGE_PAGESIZE   ( 2 << 20)
249
250 #define BASE_ADDRESS (START_ADDRESS - BUFFER_SIZE * MAX_CPU_NUMBER)
251
252 #ifndef MAP_ANONYMOUS
253 #define MAP_ANONYMOUS MAP_ANON
254 #endif
255
256 #if defined(LOONGSON3A) || defined(LOONGSON3B)
257 #define PREFETCHD_(x) ld $0, x
258 #define PREFETCHD(x)  PREFETCHD_(x)  
259 #else
260 #define PREFETCHD(x) 
261 #endif
262
263 #endif