Merge pull request #1506 from martin-frbg/issue1497
[platform/upstream/openblas.git] / common_x86_64.h
1 /*********************************************************************/
2 /* Copyright 2009, 2010 The University of Texas at Austin.           */
3 /* All rights reserved.                                              */
4 /*                                                                   */
5 /* Redistribution and use in source and binary forms, with or        */
6 /* without modification, are permitted provided that the following   */
7 /* conditions are met:                                               */
8 /*                                                                   */
9 /*   1. Redistributions of source code must retain the above         */
10 /*      copyright notice, this list of conditions and the following  */
11 /*      disclaimer.                                                  */
12 /*                                                                   */
13 /*   2. Redistributions in binary form must reproduce the above      */
14 /*      copyright notice, this list of conditions and the following  */
15 /*      disclaimer in the documentation and/or other materials       */
16 /*      provided with the distribution.                              */
17 /*                                                                   */
18 /*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
19 /*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
20 /*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
21 /*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
22 /*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
23 /*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
24 /*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
25 /*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
26 /*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
27 /*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
28 /*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
29 /*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
30 /*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
31 /*    POSSIBILITY OF SUCH DAMAGE.                                    */
32 /*                                                                   */
33 /* The views and conclusions contained in the software and           */
34 /* documentation are those of the authors and should not be          */
35 /* interpreted as representing official policies, either expressed   */
36 /* or implied, of The University of Texas at Austin.                 */
37 /*********************************************************************/
38
39 #ifndef COMMON_X86
40 #define COMMON_X86
41
42 #ifndef ASSEMBLER
43
44 #ifdef C_MSVC
45 #include <intrin.h>
46 #endif
47
48 #ifdef C_SUN
49 #define __asm__ __asm
50 #define __volatile__
51 #endif
52
53 /*
54 #ifdef HAVE_SSE2
55 #define MB   __asm__ __volatile__ ("mfence");
56 #define WMB  __asm__ __volatile__ ("sfence");
57 #else
58 #define MB
59 #define WMB
60 #endif
61 */
62
63 #define MB
64 #define WMB
65
66 static void __inline blas_lock(volatile BLASULONG *address){
67
68 #ifndef C_MSVC
69   int ret;
70 #else
71   BLASULONG ret;
72 #endif
73
74   do {
75     while (*address) {YIELDING;};
76
77 #ifndef C_MSVC
78     __asm__ __volatile__(
79                          "xchgl %0, %1\n"
80                          : "=r"(ret), "=m"(*address)
81                          : "0"(1), "m"(*address)
82                          : "memory");
83 #else
84     ret=InterlockedExchange64((volatile LONG64 *)(address), 1);
85 #endif
86   } while (ret);
87
88 }
89 #define BLAS_LOCK_DEFINED
90
91 static __inline BLASULONG rpcc(void){
92 #ifdef C_MSVC
93   return __rdtsc();
94 #else
95   BLASULONG a, d;
96
97   __asm__ __volatile__ ("rdtsc" : "=a" (a), "=d" (d));
98
99   return ((BLASULONG)a + ((BLASULONG)d << 32));
100 #endif
101 }
102 #define RPCC_DEFINED
103
104 #define RPCC64BIT
105
106 #ifndef C_MSVC
107 static __inline BLASULONG getstackaddr(void){
108   BLASULONG addr;
109
110   __asm__ __volatile__ ("movq %%rsp, %0"
111                          : "=r"(addr) : : "memory");
112
113   return addr;
114 }
115 #endif
116
117 static __inline void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx){
118
119 #ifdef C_MSVC
120   int cpuinfo[4];
121   __cpuid(cpuinfo, op);
122   *eax=cpuinfo[0];
123   *ebx=cpuinfo[1];
124   *ecx=cpuinfo[2];
125   *edx=cpuinfo[3];
126 #else
127         __asm__ __volatile__("cpuid"
128                              : "=a" (*eax),
129                              "=b" (*ebx),
130                              "=c" (*ecx),
131                              "=d" (*edx)
132                              : "0" (op));
133 #endif
134 }
135
136 /*
137 #define WHEREAMI
138 */
139
140 static __inline int WhereAmI(void){
141   int eax, ebx, ecx, edx;
142   int apicid;
143
144   cpuid(1, &eax, &ebx, &ecx, &edx);
145   apicid  = BITMASK(ebx, 24, 0xff);
146
147   return apicid;
148 }
149
150
151 #ifdef CORE_BARCELONA
152 #define IFLUSH          gotoblas_iflush()
153 #define IFLUSH_HALF     gotoblas_iflush_half()
154 #endif
155
156 #ifdef ENABLE_SSE_EXCEPTION
157
158 #define IDEBUG_START \
159 { \
160   unsigned int fp_sse_mode, new_fp_mode; \
161   __asm__ __volatile__ ("stmxcsr %0" : "=m" (fp_sse_mode) : ); \
162   new_fp_mode = fp_sse_mode & ~0xd00; \
163   __asm__ __volatile__ ("ldmxcsr %0" : : "m" (new_fp_mode) );
164
165 #define IDEBUG_END \
166   __asm__ __volatile__ ("ldmxcsr %0" : : "m" (fp_sse_mode) ); \
167 }
168
169 #endif
170
171 #ifdef XDOUBLE
172 #define GET_IMAGE(res)  __asm__ __volatile__("fstpt %0" : "=m"(res) : : "memory")
173 #elif defined(DOUBLE)
174 #define GET_IMAGE(res)  __asm__ __volatile__("movsd %%xmm1, %0" : "=m"(res) : : "memory")
175 #else
176 #define GET_IMAGE(res)  __asm__ __volatile__("movss %%xmm1, %0" : "=m"(res) : : "memory")
177 #endif
178
179 #define GET_IMAGE_CANCEL
180
181 #ifdef SMP
182 #if defined(USE64BITINT)
183 static __inline blasint blas_quickdivide(blasint x, blasint y){
184   return x / y;
185 }
186 #elif defined (C_MSVC)
187 static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){
188   return x / y;
189 }
190 #else
191 extern unsigned int blas_quick_divide_table[];
192
193 static __inline int blas_quickdivide(unsigned int x, unsigned int y){
194
195   unsigned int result;
196
197   if (y <= 1) return x;
198
199   y = blas_quick_divide_table[y];
200
201   __asm__ __volatile__  ("mull %0" :"=d" (result) :"a"(x), "0" (y));
202
203   return result;
204 }
205 #endif
206 #endif
207
208 #endif
209
210 #ifndef PAGESIZE
211 #define PAGESIZE        ( 4 << 10)
212 #endif
213 #define HUGE_PAGESIZE   ( 2 << 20)
214
215 #define BUFFER_SIZE     (32 << 20)
216
217 #define SEEK_ADDRESS
218
219 #ifdef F_INTERFACE_G77
220 #define RETURN_BY_STACK
221 #define NEED_F2CCONV
222 #endif
223
224 #ifdef F_INTERFACE_G95
225 #define RETURN_BY_PACKED
226 #endif
227
228 #ifdef F_INTERFACE_GFORT
229 #ifdef OS_WINDOWS
230 #ifndef DOUBLE
231 #define RETURN_BY_REGS
232 #else
233 #define RETURN_BY_STACK
234 #endif
235 #else
236 #define RETURN_BY_PACKED
237 #endif
238 #endif
239
240 #ifdef F_INTERFACE_INTEL
241 #define RETURN_BY_STACK
242 #endif
243
244 #ifdef F_INTERFACE_FUJITSU
245 #define RETURN_BY_STACK
246 #endif
247
248 #ifdef F_INTERFACE_FLANG
249 #define RETURN_BY_STACK
250 #endif
251
252 #ifdef F_INTERFACE_PGI
253 #define RETURN_BY_STACK
254 #endif
255
256 #ifdef F_INTERFACE_PATHSCALE
257 #define RETURN_BY_PACKED
258 #endif
259
260 #ifdef F_INTERFACE_SUN
261 #define RETURN_BY_PACKED
262 #endif
263
264 #ifdef ASSEMBLER
265
266 #if defined(PILEDRIVER) || defined(BULLDOZER) || defined(STEAMROLLER) || defined(EXCAVATOR)
267 //Enable some optimazation for barcelona.
268 #define BARCELONA_OPTIMIZATION
269 #endif
270
271 #if defined(HAVE_3DNOW)
272 #define EMMS    femms
273 #elif defined(HAVE_MMX)
274 #define EMMS    emms
275 #endif
276
277 #ifndef EMMS
278 #define EMMS
279 #endif
280
281 #define BRANCH          .byte 0x3e
282 #define NOBRANCH        .byte 0x2e
283 #define PADDING         .byte 0x66
284
285 #ifdef OS_WINDOWS
286 #define ARG1    %rcx
287 #define ARG2    %rdx
288 #define ARG3    %r8
289 #define ARG4    %r9
290 #else
291 #define ARG1    %rdi
292 #define ARG2    %rsi
293 #define ARG3    %rdx
294 #define ARG4    %rcx
295 #define ARG5    %r8
296 #define ARG6    %r9
297 #endif
298
299 #ifndef COMPLEX
300 #ifdef XDOUBLE
301 #define LOCAL_BUFFER_SIZE  QLOCAL_BUFFER_SIZE
302 #elif defined DOUBLE
303 #define LOCAL_BUFFER_SIZE  DLOCAL_BUFFER_SIZE
304 #else
305 #define LOCAL_BUFFER_SIZE  SLOCAL_BUFFER_SIZE
306 #endif
307 #else
308 #ifdef XDOUBLE
309 #define LOCAL_BUFFER_SIZE  XLOCAL_BUFFER_SIZE
310 #elif defined DOUBLE
311 #define LOCAL_BUFFER_SIZE  ZLOCAL_BUFFER_SIZE
312 #else
313 #define LOCAL_BUFFER_SIZE  CLOCAL_BUFFER_SIZE
314 #endif
315 #endif
316
317 #if defined(OS_WINDOWS)
318 #if   LOCAL_BUFFER_SIZE > 16384
319 #define STACK_TOUCHING \
320         movl    $0,  4096 * 4(%rsp);\
321         movl    $0,  4096 * 3(%rsp);\
322         movl    $0,  4096 * 2(%rsp);\
323         movl    $0,  4096 * 1(%rsp);
324 #elif LOCAL_BUFFER_SIZE > 12288
325 #define STACK_TOUCHING \
326         movl    $0,  4096 * 3(%rsp);\
327         movl    $0,  4096 * 2(%rsp);\
328         movl    $0,  4096 * 1(%rsp);
329 #elif LOCAL_BUFFER_SIZE > 8192
330 #define STACK_TOUCHING \
331         movl    $0,  4096 * 2(%rsp);\
332         movl    $0,  4096 * 1(%rsp);
333 #elif LOCAL_BUFFER_SIZE > 4096
334 #define STACK_TOUCHING \
335         movl    $0,  4096 * 1(%rsp);
336 #else
337 #define STACK_TOUCHING
338 #endif
339 #else
340 #define STACK_TOUCHING
341 #endif
342
343 #if defined(CORE2)
344 #define movapd  movaps
345 #define andpd   andps
346 #define movlpd  movlps
347 #define movhpd  movhps
348 #endif
349
350 #ifndef F_INTERFACE
351 #define REALNAME ASMNAME
352 #else
353 #define REALNAME ASMFNAME
354 #endif
355
356 #ifdef OS_DARWIN
357 #define PROLOGUE .text;.align 5; .globl REALNAME; REALNAME:
358 #define EPILOGUE        .subsections_via_symbols
359 #define PROFCODE
360 #endif
361
362 #ifdef OS_WINDOWS
363 #define SAVEREGISTERS \
364         subq    $256, %rsp;\
365         movups  %xmm6,    0(%rsp);\
366         movups  %xmm7,   16(%rsp);\
367         movups  %xmm8,   32(%rsp);\
368         movups  %xmm9,   48(%rsp);\
369         movups  %xmm10,  64(%rsp);\
370         movups  %xmm11,  80(%rsp);\
371         movups  %xmm12,  96(%rsp);\
372         movups  %xmm13, 112(%rsp);\
373         movups  %xmm14, 128(%rsp);\
374         movups  %xmm15, 144(%rsp)
375
376 #define RESTOREREGISTERS \
377         movups     0(%rsp), %xmm6;\
378         movups    16(%rsp), %xmm7;\
379         movups    32(%rsp), %xmm8;\
380         movups    48(%rsp), %xmm9;\
381         movups    64(%rsp), %xmm10;\
382         movups    80(%rsp), %xmm11;\
383         movups    96(%rsp), %xmm12;\
384         movups   112(%rsp), %xmm13;\
385         movups   128(%rsp), %xmm14;\
386         movups   144(%rsp), %xmm15;\
387         addq    $256, %rsp
388 #else
389 #define SAVEREGISTERS
390 #define RESTOREREGISTERS
391 #endif
392
393 #if defined(OS_WINDOWS) && !defined(C_PGI)
394 #define PROLOGUE \
395         .text; \
396         .align 16; \
397         .globl REALNAME ;\
398         .def REALNAME;.scl      2;.type 32;.endef; \
399 REALNAME:
400
401 #define PROFCODE
402
403 #define EPILOGUE .end
404 #endif
405
406 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_NETBSD) || defined(OS_OPENBSD) || defined(OS_DRAGONFLY) || defined(__ELF__) || defined(C_PGI)
407 #define PROLOGUE \
408         .text; \
409         .align 512; \
410         .globl REALNAME ;\
411        .type REALNAME, @function; \
412 REALNAME:
413
414 #ifdef PROFILE
415 #define PROFCODE call *mcount@GOTPCREL(%rip)
416 #else
417 #define PROFCODE
418 #endif
419
420 #define EPILOGUE \
421         .size    REALNAME, .-REALNAME; \
422         .section .note.GNU-stack,"",@progbits
423
424
425 #endif
426
427 #endif
428
429 #ifdef XDOUBLE
430 #define FLD     fldt
431 #define FST     fstpt
432 #define MOVQ    movq
433 #elif defined(DOUBLE)
434 #define FLD     fldl
435 #define FST     fstpl
436 #define FSTU    fstl
437 #define FMUL    fmull
438 #define FADD    faddl
439 #define MOVSD   movsd
440 #define MULSD   mulsd
441 #define MULPD   mulpd
442 #define CMPEQPD cmpeqpd
443 #define COMISD  comisd
444 #define PSRLQ   psrlq
445 #define ANDPD   andpd
446 #define ADDPD   addpd
447 #define ADDSD   addsd
448 #define SUBPD   subpd
449 #define SUBSD   subsd
450 #define MOVQ    movq
451 #define MOVUPD  movupd
452 #define XORPD   xorpd
453 #else
454 #define FLD     flds
455 #define FST     fstps
456 #define FSTU    fsts
457 #define FMUL    fmuls
458 #define FADD    fadds
459 #define MOVSD   movss
460 #define MULSD   mulss
461 #define MULPD   mulps
462 #define CMPEQPD cmpeqps
463 #define COMISD  comiss
464 #define PSRLQ   psrld
465 #define ANDPD   andps
466 #define ADDPD   addps
467 #define ADDSD   addss
468 #define SUBPD   subps
469 #define SUBSD   subss
470 #define MOVQ    movd
471 #define MOVUPD  movups
472 #define XORPD   xorps
473 #endif
474
475 #define HALT    hlt
476
477 #ifdef OS_DARWIN
478 #define ALIGN_2 .align 2
479 #define ALIGN_3 .align 3
480 #define ALIGN_4 .align 4
481 #define ALIGN_5 .align 5
482 #define ffreep  fstp
483 #endif
484
485 #ifndef ALIGN_2
486 #define ALIGN_2 .align 4
487 #endif
488
489 #ifndef ALIGN_3
490 #define ALIGN_3 .align 8
491 #endif
492
493 #ifndef ALIGN_4
494 #define ALIGN_4 .align 16
495 #endif
496
497 #ifndef ALIGN_5
498 #define ALIGN_5 .align 32
499 #endif
500
501 #ifndef ALIGN_6
502 #define ALIGN_6 .align 64
503 #endif
504
505 // ffreep %st(0).
506 // Because Clang didn't support ffreep, we directly use the opcode.
507 // Please check out http://www.sandpile.org/x86/opc_fpu.htm
508 #ifndef ffreep
509 #define ffreep .byte 0xdf, 0xc0 #
510 #endif
511 #endif