Skip to content

Commit

Permalink
target-arm: explicitly decode SEVL instruction
Browse files Browse the repository at this point in the history
The ARMv8 SEVL instruction is in the architectural hint space already
emulated as nop.  This makes the decoding of SEVL explicit for clarity.

Signed-off-by: Mans Rullgard <mans@mansr.com>
Message-id: 1370606786-5650-3-git-send-email-mans@mansr.com
[PMM: added 'SEVL' to the TODO comment]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
mansr authored and pm215 committed Jul 15, 2013
1 parent 2359bf8 commit 12b1057
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion target-arm/translate.c
Expand Up @@ -3501,7 +3501,8 @@ static void gen_nop_hint(DisasContext *s, int val)
break;
case 2: /* wfe */
case 4: /* sev */
/* TODO: Implement SEV and WFE. May help SMP performance. */
case 5: /* sevl */
/* TODO: Implement SEV, SEVL and WFE. May help SMP performance. */
default: /* nop */
break;
}
Expand Down

0 comments on commit 12b1057

Please sign in to comment.