[AVR] Do not emit instructions invalid for attiny10
authorAyke van Laethem <aykevanlaethem@gmail.com>
Wed, 23 Nov 2022 18:14:01 +0000 (19:14 +0100)
committerAyke van Laethem <aykevanlaethem@gmail.com>
Thu, 22 Dec 2022 16:04:53 +0000 (17:04 +0100)
commitd1d3005c9fe6a1ded17d4cad373cae85c743e7f3
treedee89bcf4f59ac5a46ff684c31228f1f53785830
parent7e1e99381650cbea8b86b163f3186f3ddf8b9e36
[AVR] Do not emit instructions invalid for attiny10

The attiny4/attiny5/attiny9/attiny10 have a slightly modified
instruction set that drops a number of useful instructions. This patch
makes sure to not emit them on these "reduced tiny" cores.

The affected instructions are:

  * lds and sts (load/store directly from data)
  * ldd and std (load/store with displacement)
  * adiw and sbiw (add/sub register pairs)
  * various other instructions that were emitted without checking
    whether the chip actually supports them (movw, adiw, etc)

There is a variant on lds and sts on these chips, but it can only
address a limited portion of the address space and is mainly useful to
load/store I/O registers (as an extension to the in and out
instructions). I have not implemented it here, implementing it can be
done in a separate patch.

This patch is not optimal. I'm sure it can be improved a lot. For
example, we could teach the instruction selector to not select lddw/stdw
instructions so that the weird pointer adjustments are not necessary.
But for now I've focused just on correctness, not on code quality.

Updates: https://github.com/llvm/llvm-project/issues/53459

Differential Revision: https://reviews.llvm.org/D131867
llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
llvm/lib/Target/AVR/AVRFrameLowering.cpp
llvm/lib/Target/AVR/AVRInstrInfo.td
llvm/lib/Target/AVR/AVRRegisterInfo.cpp
llvm/test/CodeGen/AVR/calling-conv/c/tiny.ll
llvm/test/CodeGen/AVR/directmem.ll
llvm/test/CodeGen/AVR/pseudo/LDDWRdPtrQ.mir
llvm/test/CodeGen/AVR/pseudo/LDWRdPtr.mir
llvm/test/CodeGen/AVR/pseudo/STDWPtrQRr.mir
llvm/test/CodeGen/AVR/pseudo/STWPtrRr.mir
llvm/test/CodeGen/AVR/return.ll