This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bc80991 [X86][SSE] Add tests showing missed opportunities to simplify [...] new f0711c5 [Hexagon] Update MCTargetDesc new 3a190c3 [PM/LCG] Remove the lazy RefSCC formation from the LazyCallGr [...]
The 2 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: include/llvm/Analysis/CGSCCPassManager.h | 1 + include/llvm/Analysis/LazyCallGraph.h | 63 ++-- lib/Analysis/CGSCCPassManager.cpp | 1 + lib/Analysis/LazyCallGraph.cpp | 288 +++++++----------- lib/Target/Hexagon/Hexagon.td | 10 +- lib/Target/Hexagon/HexagonInstrFormats.td | 63 ++-- lib/Target/Hexagon/HexagonInstrFormatsV4.td | 6 +- .../Hexagon/MCTargetDesc/HexagonAsmBackend.cpp | 218 +++++++------- lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h | 89 +++--- .../Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp | 3 +- .../Hexagon/MCTargetDesc/HexagonMCChecker.cpp | 76 +++-- lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h | 4 +- .../Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp | 75 +---- .../Hexagon/MCTargetDesc/HexagonMCCompound.cpp | 22 +- .../Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp | 45 ++- .../Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp | 62 ++-- .../Hexagon/MCTargetDesc/HexagonMCELFStreamer.h | 12 +- lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp | 46 ++- .../Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp | 286 ++++++++++-------- .../Hexagon/MCTargetDesc/HexagonMCInstrInfo.h | 76 ++--- .../Hexagon/MCTargetDesc/HexagonMCShuffler.cpp | 83 +++-- .../Hexagon/MCTargetDesc/HexagonMCShuffler.h | 18 +- .../Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp | 200 +++++++++--- .../Hexagon/MCTargetDesc/HexagonMCTargetDesc.h | 21 +- .../Hexagon/MCTargetDesc/HexagonShuffler.cpp | 335 +++++++++++++++------ lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h | 26 +- test/MC/Hexagon/common-redeclare.s | 6 + test/MC/Hexagon/dcfetch-symbol.s | 8 + test/MC/Hexagon/dis-duplex-p0.s | 15 +- test/MC/Hexagon/equ.s | 9 + test/MC/Hexagon/extended_relocations.ll | 23 ++ test/MC/Hexagon/missing_label.s | 8 + test/MC/Hexagon/non-relocatable.s | 10 + test/MC/Hexagon/not-over.s | 55 ++++ test/MC/Hexagon/not_found.s | 4 + test/MC/Hexagon/offset.s | 7 + test/MC/Hexagon/operand-range.s | 7 + test/MC/Hexagon/reg_altnames.s | 10 + test/MC/Hexagon/relocations.s | 12 +- unittests/Analysis/LazyCallGraphTest.cpp | 284 ++--------------- 40 files changed, 1403 insertions(+), 1184 deletions(-) create mode 100644 test/MC/Hexagon/common-redeclare.s create mode 100644 test/MC/Hexagon/dcfetch-symbol.s create mode 100644 test/MC/Hexagon/equ.s create mode 100644 test/MC/Hexagon/extended_relocations.ll create mode 100644 test/MC/Hexagon/missing_label.s create mode 100644 test/MC/Hexagon/non-relocatable.s create mode 100644 test/MC/Hexagon/not-over.s create mode 100644 test/MC/Hexagon/not_found.s create mode 100644 test/MC/Hexagon/offset.s create mode 100644 test/MC/Hexagon/operand-range.s create mode 100644 test/MC/Hexagon/reg_altnames.s