This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 930ab34cd50 [Sparc] Remove the support for builtin setjmp/longjmp new ad5b1d79398 [AArch64][v8.5A] Add speculation barrier to AArch64 instruc [...] new 13a83004f0e [ARM][v8.5A] Add speculation barrier to ARM & Thumb instruc [...] new 9322555e963 [AArch64][v8.5A] Add prediction invalidation instructions t [...]
The 3 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/AArch64/AArch64.td | 9 +++++++- lib/Target/AArch64/AArch64InstrInfo.td | 14 ++++++++++- lib/Target/AArch64/AArch64Subtarget.h | 4 ++++ lib/Target/AArch64/AArch64SystemOperands.td | 17 ++++++++++++++ lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 24 +++++++++++++++++-- .../AArch64/InstPrinter/AArch64InstPrinter.cpp | 27 +++++++++++++++++++++- lib/Target/AArch64/Utils/AArch64BaseInfo.cpp | 7 ++++++ lib/Target/AArch64/Utils/AArch64BaseInfo.h | 8 +++++++ lib/Target/ARM/ARM.td | 7 +++++- lib/Target/ARM/ARMInstrInfo.td | 12 ++++++++++ lib/Target/ARM/ARMInstrThumb2.td | 8 +++++++ lib/Target/ARM/ARMSubtarget.h | 4 ++++ lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 3 ++- test/MC/AArch64/armv8.5a-predctrl-error.s | 20 ++++++++++++++++ test/MC/AArch64/armv8.5a-predctrl.s | 18 +++++++++++++++ test/MC/AArch64/armv8.5a-specctrl.s | 11 +++++++++ test/MC/ARM/armv8.5a-specctrl-error-thumb.s | 6 +++++ test/MC/ARM/armv8.5a-specctrl-error.s | 5 ++++ test/MC/ARM/armv8.5a-specctrl.s | 15 ++++++++++++ test/MC/Disassembler/AArch64/armv8.5a-predctrl.txt | 15 ++++++++++++ test/MC/Disassembler/AArch64/armv8.5a-specctrl.txt | 9 ++++++++ .../Disassembler/ARM/armv8.5a-specctrl-thumb.txt | 9 ++++++++ test/MC/Disassembler/ARM/armv8.5a-specctrl.txt | 9 ++++++++ 23 files changed, 254 insertions(+), 7 deletions(-) create mode 100644 test/MC/AArch64/armv8.5a-predctrl-error.s create mode 100644 test/MC/AArch64/armv8.5a-predctrl.s create mode 100644 test/MC/AArch64/armv8.5a-specctrl.s create mode 100644 test/MC/ARM/armv8.5a-specctrl-error-thumb.s create mode 100644 test/MC/ARM/armv8.5a-specctrl-error.s create mode 100644 test/MC/ARM/armv8.5a-specctrl.s create mode 100644 test/MC/Disassembler/AArch64/armv8.5a-predctrl.txt create mode 100644 test/MC/Disassembler/AArch64/armv8.5a-specctrl.txt create mode 100644 test/MC/Disassembler/ARM/armv8.5a-specctrl-thumb.txt create mode 100644 test/MC/Disassembler/ARM/armv8.5a-specctrl.txt