|
@@ -1983,6 +1983,7 @@ int hvf_vcpu_exec(CPUState *cpu)
|
|
|
bool isv = syndrome & ARM_EL_ISV;
|
|
|
bool iswrite = (syndrome >> 6) & 1;
|
|
|
bool s1ptw = (syndrome >> 7) & 1;
|
|
|
+ bool sse = (syndrome >> 21) & 1;
|
|
|
uint32_t sas = (syndrome >> 22) & 3;
|
|
|
uint32_t len = 1 << sas;
|
|
|
uint32_t srt = (syndrome >> 16) & 0x1f;
|
|
@@ -2010,6 +2011,9 @@ int hvf_vcpu_exec(CPUState *cpu)
|
|
|
address_space_read(&address_space_memory,
|
|
|
hvf_exit->exception.physical_address,
|
|
|
MEMTXATTRS_UNSPECIFIED, &val, len);
|
|
|
+ if (sse) {
|
|
|
+ val = sextract64(val, 0, len * 8);
|
|
|
+ }
|
|
|
hvf_set_reg(cpu, srt, val);
|
|
|
}
|
|
|
|