Commit 6766169c authored by Mans Rullgard's avatar Mans Rullgard

mips: intreadwrite: fix inline asm for gcc 4.8

Just like gcc 4.6 and later on ARM, gcc 4.8 on MIPS generates
inefficient code when a known-unaligned location is used as a
memory input operand.  This applies the same fix as has been
previously done to the ARM version of the code.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent b82b49a5
......@@ -29,12 +29,15 @@
#define AV_RN32 AV_RN32
static av_always_inline uint32_t AV_RN32(const void *p)
{
struct __attribute__((packed)) u32 { uint32_t v; };
const uint8_t *q = p;
const struct u32 *pl = (const struct u32 *)(q + 3 * !HAVE_BIGENDIAN);
const struct u32 *pr = (const struct u32 *)(q + 3 * HAVE_BIGENDIAN);
uint32_t v;
__asm__ ("lwl %0, %1 \n\t"
"lwr %0, %2 \n\t"
: "=&r"(v)
: "m"(*(const uint32_t *)((const uint8_t *)p+3*!HAVE_BIGENDIAN)),
"m"(*(const uint32_t *)((const uint8_t *)p+3*HAVE_BIGENDIAN)));
: "m"(*pl), "m"(*pr));
return v;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment