~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavutil/mips/intreadwrite.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <stdint.h>
25
25
#include "config.h"
26
26
 
27
 
#if HAVE_INLINE_ASM
 
27
#if ARCH_MIPS64 && HAVE_INLINE_ASM
28
28
 
29
29
#define AV_RN32 AV_RN32
30
30
static av_always_inline uint32_t AV_RN32(const void *p)
31
31
{
 
32
    struct __attribute__((packed)) u32 { uint32_t v; };
 
33
    const uint8_t *q = p;
 
34
    const struct u32 *pl = (const struct u32 *)(q + 3 * !HAVE_BIGENDIAN);
 
35
    const struct u32 *pr = (const struct u32 *)(q + 3 *  HAVE_BIGENDIAN);
32
36
    uint32_t v;
33
37
    __asm__ ("lwl %0, %1  \n\t"
34
38
             "lwr %0, %2  \n\t"
35
39
             : "=&r"(v)
36
 
             : "m"(*(const uint32_t *)((const uint8_t *)p+3*!HAVE_BIGENDIAN)),
37
 
               "m"(*(const uint32_t *)((const uint8_t *)p+3*HAVE_BIGENDIAN)));
38
 
    return v;
39
 
}
40
 
 
41
 
#define AV_WN32 AV_WN32
42
 
static av_always_inline void AV_WN32(void *p, uint32_t v)
43
 
{
44
 
    __asm__ ("swl %2, %0  \n\t"
45
 
             "swr %2, %1  \n\t"
46
 
             : "=m"(*(uint32_t *)((uint8_t *)p+3*!HAVE_BIGENDIAN)),
47
 
               "=m"(*(uint32_t *)((uint8_t *)p+3*HAVE_BIGENDIAN))
48
 
             : "r"(v));
49
 
}
50
 
 
51
 
#if ARCH_MIPS64
52
 
 
53
 
#define AV_RN64 AV_RN64
54
 
static av_always_inline uint64_t AV_RN64(const void *p)
55
 
{
56
 
    uint64_t v;
57
 
    __asm__ ("ldl %0, %1  \n\t"
58
 
             "ldr %0, %2  \n\t"
59
 
             : "=&r"(v)
60
 
             : "m"(*(const uint64_t *)((const uint8_t *)p+7*!HAVE_BIGENDIAN)),
61
 
               "m"(*(const uint64_t *)((const uint8_t *)p+7*HAVE_BIGENDIAN)));
62
 
    return v;
63
 
}
64
 
 
65
 
#define AV_WN64 AV_WN64
66
 
static av_always_inline void AV_WN64(void *p, uint64_t v)
67
 
{
68
 
    __asm__ ("sdl %2, %0  \n\t"
69
 
             "sdr %2, %1  \n\t"
70
 
             : "=m"(*(uint64_t *)((uint8_t *)p+7*!HAVE_BIGENDIAN)),
71
 
               "=m"(*(uint64_t *)((uint8_t *)p+7*HAVE_BIGENDIAN))
72
 
             : "r"(v));
73
 
}
74
 
 
75
 
#else
76
 
 
77
 
#define AV_RN64 AV_RN64
78
 
static av_always_inline uint64_t AV_RN64(const void *p)
79
 
{
80
 
    union { uint64_t v; uint32_t hl[2]; } v;
81
 
    v.hl[0] = AV_RN32(p);
82
 
    v.hl[1] = AV_RN32((const uint8_t *)p + 4);
83
 
    return v.v;
84
 
}
85
 
 
86
 
#define AV_WN64 AV_WN64
87
 
static av_always_inline void AV_WN64(void *p, uint64_t v)
88
 
{
89
 
    union { uint64_t v; uint32_t hl[2]; } vv = { v };
90
 
    AV_WN32(p, vv.hl[0]);
91
 
    AV_WN32((uint8_t *)p + 4, vv.hl[1]);
92
 
}
93
 
 
94
 
#endif /* ARCH_MIPS64 */
95
 
 
96
 
#endif /* HAVE_INLINE_ASM */
 
40
             : "m"(*pl), "m"(*pr));
 
41
    return v;
 
42
}
 
43
 
 
44
#endif /* ARCH_MIPS64 && HAVE_INLINE_ASM */
97
45
 
98
46
#endif /* AVUTIL_MIPS_INTREADWRITE_H */