The following commit has been merged into the objtool/core branch of tip:

Commit-ID:     f4f803984c3685f416a74e9e2fa7d39bdafbe02b
Gitweb:        
https://git.kernel.org/tip/f4f803984c3685f416a74e9e2fa7d39bdafbe02b
Author:        Julien Thierry <jthie...@redhat.com>
AuthorDate:    Tue, 15 Sep 2020 08:53:16 +01:00
Committer:     Josh Poimboeuf <jpoim...@redhat.com>
CommitterDate: Fri, 18 Sep 2020 12:02:27 -05:00

objtool: Remove useless tests before save_reg()

save_reg already checks that the register being saved does not already
have a saved state.

Remove redundant checks before processing a register storing operation.

Signed-off-by: Julien Thierry <jthie...@redhat.com>
Signed-off-by: Josh Poimboeuf <jpoim...@redhat.com>
---
 tools/objtool/check.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 4e2f703..fd2edab 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -2030,7 +2030,7 @@ static int update_cfi_state(struct instruction *insn, 
struct cfi_state *cfi,
                                /* drap: push %rbp */
                                cfi->stack_size = 0;
 
-                       } else if (regs[op->src.reg].base == CFI_UNDEFINED) {
+                       } else {
 
                                /* drap: push %reg */
                                save_reg(cfi, op->src.reg, CFI_BP, 
-cfi->stack_size);
@@ -2059,9 +2059,7 @@ static int update_cfi_state(struct instruction *insn, 
struct cfi_state *cfi,
 
                                /* save drap offset so we know when to restore 
it */
                                cfi->drap_offset = op->dest.offset;
-                       }
-
-                       else if (regs[op->src.reg].base == CFI_UNDEFINED) {
+                       } else {
 
                                /* drap: mov reg, disp(%rbp) */
                                save_reg(cfi, op->src.reg, CFI_BP, 
op->dest.offset);

Reply via email to