x86/objtool: Teach objtool about ERET[US]
[linux-2.6-block.git] / tools / objtool / arch / x86 / decode.c
index e327cd8271352264ff2eb389d82948d502f77465..3a1d80a7878d335b490df2fd17accc6d961b9879 100644 (file)
@@ -509,11 +509,20 @@ int arch_decode_instruction(struct objtool_file *file, const struct section *sec
 
                if (op2 == 0x01) {
 
-                       if (modrm == 0xca)
-                               insn->type = INSN_CLAC;
-                       else if (modrm == 0xcb)
-                               insn->type = INSN_STAC;
-
+                       switch (insn_last_prefix_id(&ins)) {
+                       case INAT_PFX_REPE:
+                       case INAT_PFX_REPNE:
+                               if (modrm == 0xca)
+                                       /* eretu/erets */
+                                       insn->type = INSN_CONTEXT_SWITCH;
+                               break;
+                       default:
+                               if (modrm == 0xca)
+                                       insn->type = INSN_CLAC;
+                               else if (modrm == 0xcb)
+                                       insn->type = INSN_STAC;
+                               break;
+                       }
                } else if (op2 >= 0x80 && op2 <= 0x8f) {
 
                        insn->type = INSN_JUMP_CONDITIONAL;