Mercurial > libavcodec.hg
annotate alpha/asm.h @ 764:d4726182dfd2 libavcodec
optimize block_permute()
optimize dct_quantize_c()
dont permute s->q_inter/intra_matrix
| author | michaelni |
|---|---|
| date | Wed, 23 Oct 2002 15:11:07 +0000 |
| parents | 9cda14fe33d9 |
| children | 1831d86117a3 |
| rev | line source |
|---|---|
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
1 /* |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
2 * Alpha optimized DSP utils |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
3 * Copyright (c) 2002 Falk Hueffner <falk@debian.org> |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
4 * |
| 429 | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Lesser General Public | |
| 7 * License as published by the Free Software Foundation; either | |
| 8 * version 2 of the License, or (at your option) any later version. | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
9 * |
| 429 | 10 * This library is distributed in the hope that it will be useful, |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Lesser General Public License for more details. | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
14 * |
| 429 | 15 * You should have received a copy of the GNU Lesser General Public |
| 16 * License along with this library; if not, write to the Free Software | |
| 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
18 */ |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
19 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
20 #ifndef LIBAVCODEC_ALPHA_ASM_H |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
21 #define LIBAVCODEC_ALPHA_ASM_H |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
22 |
| 504 | 23 #include <inttypes.h> |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
24 |
| 728 | 25 #if defined __GNUC__ |
| 26 # define GNUC_PREREQ(maj, min) \ | |
| 27 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) | |
| 28 #else | |
| 29 # define GNUC_PREREQ(maj, min) 0 | |
| 30 #endif | |
| 31 | |
| 32 #if GNUC_PREREQ(2,96) | |
| 33 # define likely(x) __builtin_expect((x) != 0, 1) | |
| 34 # define unlikely(x) __builtin_expect((x) != 0, 0) | |
| 35 #else | |
| 36 # define likely(x) (x) | |
| 37 # define unlikely(x) (x) | |
| 38 #endif | |
| 39 | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
40 #define AMASK_BWX (1 << 0) |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
41 #define AMASK_FIX (1 << 1) |
| 504 | 42 #define AMASK_CIX (1 << 2) |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
43 #define AMASK_MVI (1 << 8) |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
44 |
| 504 | 45 inline static uint64_t BYTE_VEC(uint64_t x) |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
46 { |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
47 x |= x << 8; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
48 x |= x << 16; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
49 x |= x << 32; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
50 return x; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
51 } |
| 504 | 52 inline static uint64_t WORD_VEC(uint64_t x) |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
53 { |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
54 x |= x << 16; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
55 x |= x << 32; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
56 return x; |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
57 } |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
58 |
| 504 | 59 #define ldq(p) (*(const uint64_t *) (p)) |
| 60 #define ldl(p) (*(const int32_t *) (p)) | |
| 61 #define stl(l, p) do { *(uint32_t *) (p) = (l); } while (0) | |
| 62 #define stq(l, p) do { *(uint64_t *) (p) = (l); } while (0) | |
| 728 | 63 #define sextw(x) ((int16_t) (x)) |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
64 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
65 #ifdef __GNUC__ |
| 504 | 66 #define ASM_ACCEPT_MVI asm (".arch pca56") |
| 67 struct unaligned_long { uint64_t l; } __attribute__((packed)); | |
| 68 #define ldq_u(p) (*(const uint64_t *) (((uint64_t) (p)) & ~7ul)) | |
| 69 #define uldq(a) (((const struct unaligned_long *) (a))->l) | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
70 |
| 728 | 71 #if GNUC_PREREQ(3,0) |
| 72 /* Unfortunately, __builtin_prefetch is slightly buggy on Alpha. The | |
| 73 defines here are kludged so we still get the right | |
| 74 instruction. This needs to be adapted as soon as gcc is fixed. */ | |
| 75 # define prefetch(p) __builtin_prefetch((p), 0, 1) | |
| 76 # define prefetch_en(p) __builtin_prefetch((p), 1, 1) | |
| 77 # define prefetch_m(p) __builtin_prefetch((p), 0, 0) | |
| 78 # define prefetch_men(p) __builtin_prefetch((p), 1, 0) | |
| 79 #else | |
| 80 # define prefetch(p) asm volatile("ldl $31,%0" : : "m"(*(const char *) (p)) : "memory") | |
| 81 # define prefetch_en(p) asm volatile("ldq $31,%0" : : "m"(*(const char *) (p)) : "memory") | |
| 82 # define prefetch_m(p) asm volatile("lds $f31,%0" : : "m"(*(const char *) (p)) : "memory") | |
| 83 # define prefetch_men(p) asm volatile("ldt $f31,%0" : : "m"(*(const char *) (p)) : "memory") | |
| 84 #endif | |
| 85 | |
| 86 #if GNUC_PREREQ(3,3) | |
| 504 | 87 #define cmpbge __builtin_alpha_cmpbge |
| 88 /* Avoid warnings. */ | |
| 89 #define extql(a, b) __builtin_alpha_extql(a, (uint64_t) (b)) | |
| 728 | 90 #define extwl(a, b) __builtin_alpha_extwl(a, (uint64_t) (b)) |
| 504 | 91 #define extqh(a, b) __builtin_alpha_extqh(a, (uint64_t) (b)) |
| 92 #define zap __builtin_alpha_zap | |
| 93 #define zapnot __builtin_alpha_zapnot | |
| 94 #define amask __builtin_alpha_amask | |
| 95 #define implver __builtin_alpha_implver | |
| 96 #define rpcc __builtin_alpha_rpcc | |
| 97 #define minub8 __builtin_alpha_minub8 | |
| 98 #define minsb8 __builtin_alpha_minsb8 | |
| 99 #define minuw4 __builtin_alpha_minuw4 | |
| 100 #define minsw4 __builtin_alpha_minsw4 | |
| 101 #define maxub8 __builtin_alpha_maxub8 | |
| 102 #define maxsb8 __builtin_alpha_maxsb8 | |
| 103 #define maxuw4 __builtin_alpha_maxuw4 | |
| 104 #define maxsw4 __builtin_alpha_maxsw4 | |
| 105 #define perr __builtin_alpha_perr | |
| 106 #define pklb __builtin_alpha_pklb | |
| 107 #define pkwb __builtin_alpha_pkwb | |
| 108 #define unpkbl __builtin_alpha_unpkbl | |
| 109 #define unpkbw __builtin_alpha_unpkbw | |
| 110 #else | |
| 111 #define cmpbge(a, b) ({ uint64_t __r; asm ("cmpbge %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) | |
| 112 #define extql(a, b) ({ uint64_t __r; asm ("extql %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) | |
| 728 | 113 #define extwl(a, b) ({ uint64_t __r; asm ("extwl %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) |
| 504 | 114 #define extqh(a, b) ({ uint64_t __r; asm ("extqh %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) |
| 115 #define zap(a, b) ({ uint64_t __r; asm ("zap %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) | |
| 116 #define zapnot(a, b) ({ uint64_t __r; asm ("zapnot %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; }) | |
| 117 #define amask(a) ({ uint64_t __r; asm ("amask %1,%0" : "=r" (__r) : "rI" (a)); __r; }) | |
| 118 #define implver() ({ uint64_t __r; asm ("implver %0" : "=r" (__r)); __r; }) | |
| 119 #define rpcc() ({ uint64_t __r; asm volatile ("rpcc %0" : "=r" (__r)); __r; }) | |
| 120 #define minub8(a, b) ({ uint64_t __r; asm ("minub8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 121 #define minsb8(a, b) ({ uint64_t __r; asm ("minsb8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 122 #define minuw4(a, b) ({ uint64_t __r; asm ("minuw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 123 #define minsw4(a, b) ({ uint64_t __r; asm ("minsw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 124 #define maxub8(a, b) ({ uint64_t __r; asm ("maxub8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 125 #define maxsb8(a, b) ({ uint64_t __r; asm ("maxsb8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 126 #define maxuw4(a, b) ({ uint64_t __r; asm ("maxuw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 127 #define maxsw4(a, b) ({ uint64_t __r; asm ("maxsw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; }) | |
| 128 #define perr(a, b) ({ uint64_t __r; asm ("perr %r1,%r2,%0" : "=r" (__r) : "%rJ" (a), "rJ" (b)); __r; }) | |
| 129 #define pklb(a) ({ uint64_t __r; asm ("pklb %r1,%0" : "=r" (__r) : "rJ" (a)); __r; }) | |
| 130 #define pkwb(a) ({ uint64_t __r; asm ("pkwb %r1,%0" : "=r" (__r) : "rJ" (a)); __r; }) | |
| 131 #define unpkbl(a) ({ uint64_t __r; asm ("unpkbl %r1,%0" : "=r" (__r) : "rJ" (a)); __r; }) | |
| 132 #define unpkbw(a) ({ uint64_t __r; asm ("unpkbw %r1,%0" : "=r" (__r) : "rJ" (a)); __r; }) | |
| 133 #endif | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
134 |
| 728 | 135 #elif defined(__DECC) /* Digital/Compaq/hp "ccc" compiler */ |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
136 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
137 #include <c_asm.h> |
| 504 | 138 #define ASM_ACCEPT_MVI |
| 139 #define ldq_u(a) asm ("ldq_u %v0,0(%a0)", a) | |
| 140 #define uldq(a) (*(const __unaligned uint64_t *) (a)) | |
| 141 #define cmpbge(a, b) asm ("cmpbge %a0,%a1,%v0", a, b) | |
| 142 #define extql(a, b) asm ("extql %a0,%a1,%v0", a, b) | |
| 728 | 143 #define extwl(a, b) asm ("extwl %a0,%a1,%v0", a, b) |
| 504 | 144 #define extqh(a, b) asm ("extqh %a0,%a1,%v0", a, b) |
| 145 #define zap(a, b) asm ("zap %a0,%a1,%v0", a, b) | |
| 146 #define zapnot(a, b) asm ("zapnot %a0,%a1,%v0", a, b) | |
| 147 #define amask(a) asm ("amask %a0,%v0", a) | |
| 148 #define implver() asm ("implver %v0") | |
| 149 #define rpcc() asm ("rpcc %v0") | |
| 150 #define minub8(a, b) asm ("minub8 %a0,%a1,%v0", a, b) | |
| 151 #define minsb8(a, b) asm ("minsb8 %a0,%a1,%v0", a, b) | |
| 152 #define minuw4(a, b) asm ("minuw4 %a0,%a1,%v0", a, b) | |
| 153 #define minsw4(a, b) asm ("minsw4 %a0,%a1,%v0", a, b) | |
| 154 #define maxub8(a, b) asm ("maxub8 %a0,%a1,%v0", a, b) | |
| 155 #define maxsb8(a, b) asm ("maxsb8 %a0,%a1,%v0", a, b) | |
| 156 #define maxuw4(a, b) asm ("maxuw4 %a0,%a1,%v0", a, b) | |
| 157 #define maxsw4(a, b) asm ("maxsw4 %a0,%a1,%v0", a, b) | |
| 158 #define perr(a, b) asm ("perr %a0,%a1,%v0", a, b) | |
| 159 #define pklb(a) asm ("pklb %a0,%v0", a) | |
| 160 #define pkwb(a) asm ("pkwb %a0,%v0", a) | |
| 161 #define unpkbl(a) asm ("unpkbl %a0,%v0", a) | |
| 162 #define unpkbw(a) asm ("unpkbw %a0,%v0", a) | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
163 |
| 504 | 164 #else |
| 165 #error "Unknown compiler!" | |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
166 #endif |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
167 |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
diff
changeset
|
168 #endif /* LIBAVCODEC_ALPHA_ASM_H */ |
