提交 b210c96c 编写于 作者: F Falk Hüffner

* Fixed constraints

* Support ccc
* Support gcc 3.2 builtins

Originally committed as revision 704 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 3155c994
...@@ -20,122 +20,115 @@ ...@@ -20,122 +20,115 @@
#ifndef LIBAVCODEC_ALPHA_ASM_H #ifndef LIBAVCODEC_ALPHA_ASM_H
#define LIBAVCODEC_ALPHA_ASM_H #define LIBAVCODEC_ALPHA_ASM_H
#include <stdint.h> #include <inttypes.h>
#define AMASK_BWX (1 << 0) #define AMASK_BWX (1 << 0)
#define AMASK_FIX (1 << 1) #define AMASK_FIX (1 << 1)
#define AMASK_CIX (1 << 2)
#define AMASK_MVI (1 << 8) #define AMASK_MVI (1 << 8)
static inline uint64_t BYTE_VEC(uint64_t x) inline static uint64_t BYTE_VEC(uint64_t x)
{ {
x |= x << 8; x |= x << 8;
x |= x << 16; x |= x << 16;
x |= x << 32; x |= x << 32;
return x; return x;
} }
static inline uint64_t WORD_VEC(uint64_t x) inline static uint64_t WORD_VEC(uint64_t x)
{ {
x |= x << 16; x |= x << 16;
x |= x << 32; x |= x << 32;
return x; return x;
} }
static inline int32_t ldl(const void* p) #define ldq(p) (*(const uint64_t *) (p))
{ #define ldl(p) (*(const int32_t *) (p))
return *(const int32_t*) p; #define stl(l, p) do { *(uint32_t *) (p) = (l); } while (0)
} #define stq(l, p) do { *(uint64_t *) (p) = (l); } while (0)
static inline uint64_t ldq(const void* p)
{
return *(const uint64_t*) p;
}
/* FIXME ccc doesn't seem to get it? Use inline asm? */
static inline uint64_t ldq_u(const void* p)
{
return *(const uint64_t*) ((uintptr_t) p & ~7ul);
}
static inline void stl(uint32_t l, void* p)
{
*(uint32_t*) p = l;
}
static inline void stq(uint64_t l, void* p)
{
*(uint64_t*) p = l;
}
#ifdef __GNUC__ #ifdef __GNUC__
#define OPCODE1(name) \ #define ASM_ACCEPT_MVI asm (".arch pca56")
static inline uint64_t name(uint64_t l) \ struct unaligned_long { uint64_t l; } __attribute__((packed));
{ \ #define ldq_u(p) (*(const uint64_t *) (((uint64_t) (p)) & ~7ul))
uint64_t r; \ #define uldq(a) (((const struct unaligned_long *) (a))->l)
asm (#name " %1, %0" : "=r" (r) : "r" (l)); \
return r; \ #if __GNUC__ >= 3 && __GNUC_MINOR__ >= 2
} #define cmpbge __builtin_alpha_cmpbge
/* Avoid warnings. */
#define OPCODE2(name) \ #define extql(a, b) __builtin_alpha_extql(a, (uint64_t) (b))
static inline uint64_t name(uint64_t l1, uint64_t l2) \ #define extqh(a, b) __builtin_alpha_extqh(a, (uint64_t) (b))
{ \ #define zap __builtin_alpha_zap
uint64_t r; \ #define zapnot __builtin_alpha_zapnot
asm (#name " %1, %2, %0" : "=r" (r) : "r" (l1), "rI" (l2)); \ #define amask __builtin_alpha_amask
return r; \ #define implver __builtin_alpha_implver
} #define rpcc __builtin_alpha_rpcc
#define minub8 __builtin_alpha_minub8
/* We don't want gcc to move this around or combine it with another #define minsb8 __builtin_alpha_minsb8
rpcc, so mark it volatile. */ #define minuw4 __builtin_alpha_minuw4
static inline uint64_t rpcc(void) #define minsw4 __builtin_alpha_minsw4
{ #define maxub8 __builtin_alpha_maxub8
uint64_t r; #define maxsb8 __builtin_alpha_maxsb8
asm volatile ("rpcc %0" : "=r" (r)); #define maxuw4 __builtin_alpha_maxuw4
return r; #define maxsw4 __builtin_alpha_maxsw4
} #define perr __builtin_alpha_perr
#define pklb __builtin_alpha_pklb
static inline uint64_t uldq(const void* v) #define pkwb __builtin_alpha_pkwb
{ #define unpkbl __builtin_alpha_unpkbl
struct foo { #define unpkbw __builtin_alpha_unpkbw
unsigned long l; #else
} __attribute__((packed)); #define cmpbge(a, b) ({ uint64_t __r; asm ("cmpbge %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; })
#define extql(a, b) ({ uint64_t __r; asm ("extql %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; })
return ((const struct foo*) v)->l; #define extqh(a, b) ({ uint64_t __r; asm ("extqh %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; })
} #define zap(a, b) ({ uint64_t __r; asm ("zap %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; })
#define zapnot(a, b) ({ uint64_t __r; asm ("zapnot %r1,%2,%0" : "=r" (__r) : "rJ" (a), "rI" (b)); __r; })
#define amask(a) ({ uint64_t __r; asm ("amask %1,%0" : "=r" (__r) : "rI" (a)); __r; })
#define implver() ({ uint64_t __r; asm ("implver %0" : "=r" (__r)); __r; })
#define rpcc() ({ uint64_t __r; asm volatile ("rpcc %0" : "=r" (__r)); __r; })
#define minub8(a, b) ({ uint64_t __r; asm ("minub8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define minsb8(a, b) ({ uint64_t __r; asm ("minsb8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define minuw4(a, b) ({ uint64_t __r; asm ("minuw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define minsw4(a, b) ({ uint64_t __r; asm ("minsw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define maxub8(a, b) ({ uint64_t __r; asm ("maxub8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define maxsb8(a, b) ({ uint64_t __r; asm ("maxsb8 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define maxuw4(a, b) ({ uint64_t __r; asm ("maxuw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define maxsw4(a, b) ({ uint64_t __r; asm ("maxsw4 %r1,%2,%0" : "=r" (__r) : "%rJ" (a), "rI" (b)); __r; })
#define perr(a, b) ({ uint64_t __r; asm ("perr %r1,%r2,%0" : "=r" (__r) : "%rJ" (a), "rJ" (b)); __r; })
#define pklb(a) ({ uint64_t __r; asm ("pklb %r1,%0" : "=r" (__r) : "rJ" (a)); __r; })
#define pkwb(a) ({ uint64_t __r; asm ("pkwb %r1,%0" : "=r" (__r) : "rJ" (a)); __r; })
#define unpkbl(a) ({ uint64_t __r; asm ("unpkbl %r1,%0" : "=r" (__r) : "rJ" (a)); __r; })
#define unpkbw(a) ({ uint64_t __r; asm ("unpkbw %r1,%0" : "=r" (__r) : "rJ" (a)); __r; })
#endif
#elif defined(__DECC) /* Compaq "ccc" compiler */ #elif defined(__DECC) /* Digital/Compaq "ccc" compiler */
#include <c_asm.h> #include <c_asm.h>
#define OPCODE1(name) \ #define ASM_ACCEPT_MVI
static inline uint64_t name(uint64_t l) \ #define ldq_u(a) asm ("ldq_u %v0,0(%a0)", a)
{ \ #define uldq(a) (*(const __unaligned uint64_t *) (a))
return asm (#name " %a0, %v0", l); \ #define cmpbge(a, b) asm ("cmpbge %a0,%a1,%v0", a, b)
} #define extql(a, b) asm ("extql %a0,%a1,%v0", a, b)
#define extqh(a, b) asm ("extqh %a0,%a1,%v0", a, b)
#define OPCODE2(name) \ #define zap(a, b) asm ("zap %a0,%a1,%v0", a, b)
static inline uint64_t name(uint64_t l1, uint64_t l2) \ #define zapnot(a, b) asm ("zapnot %a0,%a1,%v0", a, b)
{ \ #define amask(a) asm ("amask %a0,%v0", a)
return asm (#name " %a0, %a1, %v0", l1, l2); \ #define implver() asm ("implver %v0")
} #define rpcc() asm ("rpcc %v0")
#define minub8(a, b) asm ("minub8 %a0,%a1,%v0", a, b)
static inline uint64_t rpcc(void) #define minsb8(a, b) asm ("minsb8 %a0,%a1,%v0", a, b)
{ #define minuw4(a, b) asm ("minuw4 %a0,%a1,%v0", a, b)
return asm ("rpcc %v0"); #define minsw4(a, b) asm ("minsw4 %a0,%a1,%v0", a, b)
} #define maxub8(a, b) asm ("maxub8 %a0,%a1,%v0", a, b)
#define maxsb8(a, b) asm ("maxsb8 %a0,%a1,%v0", a, b)
static inline uint64_t uldq(const void* v) #define maxuw4(a, b) asm ("maxuw4 %a0,%a1,%v0", a, b)
{ #define maxsw4(a, b) asm ("maxsw4 %a0,%a1,%v0", a, b)
return *(const __unaligned uint64_t *) v; #define perr(a, b) asm ("perr %a0,%a1,%v0", a, b)
} #define pklb(a) asm ("pklb %a0,%v0", a)
#define pkwb(a) asm ("pkwb %a0,%v0", a)
#define unpkbl(a) asm ("unpkbl %a0,%v0", a)
#define unpkbw(a) asm ("unpkbw %a0,%v0", a)
#else
#error "Unknown compiler!"
#endif #endif
OPCODE1(amask);
OPCODE1(unpkbw);
OPCODE1(pkwb);
OPCODE2(extql);
OPCODE2(extqh);
OPCODE2(zap);
OPCODE2(cmpbge);
OPCODE2(minsw4);
OPCODE2(minuw4);
OPCODE2(minub8);
OPCODE2(maxsw4);
OPCODE2(maxuw4);
OPCODE2(perr);
#endif /* LIBAVCODEC_ALPHA_ASM_H */ #endif /* LIBAVCODEC_ALPHA_ASM_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册