mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 11:10:10 +01:00
gallium: added ppc_lvewx()
This commit is contained in:
parent
3aea9c463b
commit
049f57f86a
2 changed files with 11 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue