diff options
author | Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> | 2016-12-09 17:47:21 +0530 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2017-01-31 10:10:13 +1100 |
commit | 176e44e7ebd6da47165c9444f2330ef8f7011deb (patch) | |
tree | 56986945d63f4a3cea96ad6ef9e15f7a1c6a82e7 /target/ppc/mem_helper.c | |
parent | 6914bc4fb5c16cdf92d59e620e3f69de302ed838 (diff) | |
download | qemu-176e44e7ebd6da47165c9444f2330ef8f7011deb.zip |
target-ppc: implement lxvll instruction
lxvll: Load VSX Vector Left-justified with Length
Little/Big-endian Storage:
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+--+--+
|“T”|“h”|“i”|“s”|“ ”|“i”|“s”|“ ”|“a”|“ ”|“T”|“E”|“S”|“T”|FF|FF|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+--+--+
Loading 14 bytes to vector (8-bit elements) in BE/LE:
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+--+--+
|“T”|“h”|“i”|“s”|“ ”|“i”|“s”|“ ”|“a”|“ ”|“T”|“E”|“S”|“T”|00|00|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+--+--+
Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/mem_helper.c')
-rw-r--r-- | target/ppc/mem_helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/ppc/mem_helper.c b/target/ppc/mem_helper.c index c4ddc5be0c..da514657b6 100644 --- a/target/ppc/mem_helper.c +++ b/target/ppc/mem_helper.c @@ -315,6 +315,7 @@ void helper_##name(CPUPPCState *env, target_ulong addr, \ } VSX_LXVL(lxvl, 0) +VSX_LXVL(lxvll, 1) #undef VSX_LXVL #undef GET_NB #endif /* TARGET_PPC64 */ |