gallium: added ppc_lvewx()
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 22 Oct 2008 17:06:39 +0000 (11:06 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 22 Oct 2008 17:06:39 +0000 (11:06 -0600)
src/gallium/auxiliary/rtasm/rtasm_ppc.c
src/gallium/auxiliary/rtasm/rtasm_ppc.h

index 4a94ed0460d6be4d2f26017e06e2e37fc72b051c..aaec2d21918828dcc699ffb46b12e1d7e634e715 100644 (file)
@@ -582,6 +582,13 @@ ppc_lvx(struct ppc_function *p, uint vR, uint vA, uint vB)
    emit_x(p, 31, vR, vA, vB, 103);
 }
 
+/** load vector element word: vR = mem_word[vA+vB] */
+void
+ppc_lvewx(struct ppc_function *p, uint vR, uint vA, uint vB)
+{
+   emit_x(p, 31, vR, vA, vB, 71);
+}
+
 
 
 /**
index 6370b604944057a678ab1461968960ba59e7c8ef..53d5746dc8950ca2e655f136b1b4da5dac1e2804 100644 (file)
@@ -153,6 +153,10 @@ ppc_stvx(struct ppc_function *p, uint vR, uint vA, uint vB);
 extern void
 ppc_lvx(struct ppc_function *p, uint vR, uint vA, uint vB);
 
+/** load vector element word: vR = mem_word[vA+vB] */
+extern void
+ppc_lvewx(struct ppc_function *p, uint vR, uint vA, uint vB);
+
 
 
 /**