This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 499f980e9e5 [RISCV][NFC] Use TargetRegisterClass::hasSubClassEq in stor [...] new a73fa871890 [RISCV] MC layer support for load/store instructions of the [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 48 ++++++++ .../RISCV/Disassembler/RISCVDisassembler.cpp | 62 ++++++++-- lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h | 12 +- .../RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp | 22 +++- lib/Target/RISCV/RISCV.td | 7 ++ lib/Target/RISCV/RISCVInstrFormats.td | 16 ++- lib/Target/RISCV/RISCVInstrFormatsC.td | 96 +++++++++++++++ lib/Target/RISCV/RISCVInstrInfo.td | 1 + lib/Target/RISCV/RISCVInstrInfoC.td | 132 +++++++++++++++++++++ lib/Target/RISCV/RISCVRegisterInfo.td | 30 +++++ lib/Target/RISCV/RISCVSubtarget.h | 2 + test/MC/RISCV/rv32c-invalid.s | 18 +++ test/MC/RISCV/rv32c-valid.s | 23 ++++ test/MC/RISCV/rv64c-invalid.s | 18 +++ test/MC/RISCV/rv64c-valid.s | 19 +++ 15 files changed, 484 insertions(+), 22 deletions(-) create mode 100644 lib/Target/RISCV/RISCVInstrFormatsC.td create mode 100644 lib/Target/RISCV/RISCVInstrInfoC.td create mode 100644 test/MC/RISCV/rv32c-invalid.s create mode 100644 test/MC/RISCV/rv32c-valid.s create mode 100644 test/MC/RISCV/rv64c-invalid.s create mode 100644 test/MC/RISCV/rv64c-valid.s