Commit ca49a46e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Revert "Add the clobber register list to inline assembly."

This reverts commit 23e0cb9f.
parent 5b56e1c5
...@@ -45,8 +45,7 @@ ...@@ -45,8 +45,7 @@
store " %%xmm2, 16(%[dst])\n" \ store " %%xmm2, 16(%[dst])\n" \
store " %%xmm3, 32(%[dst])\n" \ store " %%xmm3, 32(%[dst])\n" \
store " %%xmm4, 48(%[dst])\n" \ store " %%xmm4, 48(%[dst])\n" \
: : [dst]"r"(dstp), [src]"r"(srcp) \ : : [dst]"r"(dstp), [src]"r"(srcp) : "memory")
: "xmm1", "xmm2", "xmm3", "xmm4", "memory")
/* Execute the instruction op only if SSE2 is supported. */ /* Execute the instruction op only if SSE2 is supported. */
#ifdef CAN_COMPILE_SSE2 #ifdef CAN_COMPILE_SSE2
...@@ -185,8 +184,7 @@ static void SplitUV(uint8_t *dstu, size_t dstu_pitch, ...@@ -185,8 +184,7 @@ static void SplitUV(uint8_t *dstu, size_t dstu_pitch,
"pshufb %%xmm7, %%xmm2\n" "pshufb %%xmm7, %%xmm2\n"
"pshufb %%xmm7, %%xmm3\n" "pshufb %%xmm7, %%xmm3\n"
STORE2X32 STORE2X32
: : [dst1]"r"(&dstu[x]), [dst2]"r"(&dstv[x]), [src]"r"(&src[2*x]), [shuffle]"r"(shuffle) : : [dst1]"r"(&dstu[x]), [dst2]"r"(&dstv[x]), [src]"r"(&src[2*x]), [shuffle]"r"(shuffle) : "memory");
: "xmm0", "xmm1", "xmm2", "xmm3", "xmm7", "memory");
} }
} else } else
#endif #endif
...@@ -212,8 +210,7 @@ static void SplitUV(uint8_t *dstu, size_t dstu_pitch, ...@@ -212,8 +210,7 @@ static void SplitUV(uint8_t *dstu, size_t dstu_pitch,
"packuswb %%xmm6, %%xmm2\n" "packuswb %%xmm6, %%xmm2\n"
"packuswb %%xmm7, %%xmm3\n" "packuswb %%xmm7, %%xmm3\n"
STORE2X32 STORE2X32
: : [dst2]"r"(&dstu[x]), [dst1]"r"(&dstv[x]), [src]"r"(&src[2*x]), [mask]"r"(mask) : : [dst2]"r"(&dstu[x]), [dst1]"r"(&dstv[x]), [src]"r"(&src[2*x]), [mask]"r"(mask) : "memory");
: "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7", "memory");
} }
} }
#endif #endif
......
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