[all-commits] [llvm/llvm-project] 8c1276: [ARM][Thumb2] Fix ADD/SUB invalid writes to SP

dnsampaio via All-commits all-commits at lists.llvm.org
Fri Jan 10 03:25:48 PST 2020


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: 8c12769f3046029e2a9b4e48e1645b1a77d28650
      https://github.com/llvm/llvm-project/commit/8c12769f3046029e2a9b4e48e1645b1a77d28650
  Author: Diogo Sampaio <diogo.sampaio at arm.com>
  Date:   2020-01-10 (Fri, 10 Jan 2020)

  Changed paths:
    M llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    M llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
    M llvm/lib/Target/ARM/ARMInstrThumb2.td
    M llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    M llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
    M llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
    M llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    M llvm/test/CodeGen/ARM/GlobalISel/thumb-select-arithmetic-ops.mir
    M llvm/test/CodeGen/ARM/GlobalISel/thumb-select-load-store.mir
    M llvm/test/CodeGen/MIR/ARM/thumb2-sub-sp-t3.mir
    A llvm/test/CodeGen/Thumb2/bug-subw.ll
    M llvm/test/CodeGen/Thumb2/fp16-stacksplot.mir
    M llvm/test/CodeGen/Thumb2/mve-stacksplot.mir
    M llvm/test/CodeGen/Thumb2/peephole-addsub.mir
    M llvm/test/CodeGen/Thumb2/peephole-cmp.mir
    M llvm/test/MC/ARM/basic-thumb2-instructions.s
    M llvm/test/MC/ARM/invalid-addsub.s
    M llvm/test/MC/ARM/negative-immediates.s
    M llvm/test/MC/ARM/register-token-source-loc.s
    M llvm/test/MC/ARM/thumb-diagnostics.s
    M llvm/test/MC/Disassembler/ARM/invalid-thumbv7.txt
    M llvm/test/MC/Disassembler/ARM/thumb-tests.txt
    M llvm/test/MC/Disassembler/ARM/thumb2-v8.txt
    M llvm/test/MC/Disassembler/ARM/thumb2.txt

  Log Message:
  -----------
  [ARM][Thumb2] Fix ADD/SUB invalid writes to SP

Summary:
This patch fixes pr23772  [ARM] r226200 can emit illegal thumb2 instruction: "sub sp, r12, #80".
The violation was that SUB and ADD (reg, immediate) instructions can only write to SP if the source register is also SP. So the above instructions was unpredictable.
To enforce that the instruction t2(ADD|SUB)ri does not write to SP we now enforce the destination register to be rGPR (That exclude PC and SP).
Different than the ARM specification, that defines one instruction that can read from SP, and one that can't, here we inserted one that can't write to SP, and other that can only write to SP as to reuse most of the hard-coded size optimizations.
When performing this change, it uncovered that emitting Thumb2 Reg plus Immediate could not emit all variants of ADD SP, SP #imm instructions before so it was refactored to be able to. (see test/CodeGen/Thumb2/mve-stacksplot.mir where we use a subw sp, sp, Imm12 variant )
It also uncovered a disassembly issue of adr.w instructions, that were only written as SUBW instructions (see llvm/test/MC/Disassembler/ARM/thumb2.txt).

Reviewers: eli.friedman, dmgreen, carwil, olista01, efriedma

Reviewed By: efriedma

Subscribers: john.brawn, efriedma, ostannard, kristof.beyls, hiraditya, dmgreen, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D70680




More information about the All-commits mailing list