This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a23ad66819b Move value type list from TargetRegisterClass to TargetRegi [...] new 031e2c7f67b Revert r301231: Accidentally committed stale files new f3b0bf3070f Move value type list from TargetRegisterClass to TargetRegi [...] new f5d6c7c2d36 Refactor DynamicLibrary so searching for a symbol will have [...]
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: include/llvm/Support/DynamicLibrary.h | 7 +- include/llvm/Target/TargetRegisterInfo.h | 6 +- lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 2 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 12 +- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 +- lib/CodeGen/TargetLoweringBase.cpp | 2 +- lib/CodeGen/TargetRegisterInfo.cpp | 6 +- lib/Support/CMakeLists.txt | 1 - lib/Support/DynamicLibrary.cpp | 237 ++++++++++----------- lib/Support/SearchForAddressOfSpecialSymbol.cpp | 58 ----- lib/Support/Unix/DynamicLibrary.inc | 131 ++++++++++++ lib/Support/Windows/DynamicLibrary.inc | 218 ++++++++++--------- lib/Target/AVR/AVRInstrInfo.cpp | 8 +- lib/Target/AVR/AVRRegisterInfo.cpp | 4 +- lib/Target/Mips/MipsOptimizePICCall.cpp | 4 +- lib/Target/Mips/MipsSEInstrInfo.cpp | 22 +- lib/Target/PowerPC/PPCISelLowering.cpp | 2 +- lib/Target/Sparc/SparcISelLowering.cpp | 2 +- lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp | 2 +- lib/Target/X86/X86ISelLowering.cpp | 10 +- lib/Target/X86/X86InstrInfo.cpp | 4 +- unittests/Support/CMakeLists.txt | 2 + unittests/Support/DynamicLibrary/CMakeLists.txt | 19 ++ .../Support/DynamicLibrary/DynamicLibraryTest.cpp | 133 ++++++++++++ unittests/Support/DynamicLibrary/PipSqueak.cxx | 36 ++++ .../Support/DynamicLibrary/PipSqueak.h | 13 +- 26 files changed, 613 insertions(+), 330 deletions(-) delete mode 100644 lib/Support/SearchForAddressOfSpecialSymbol.cpp create mode 100644 lib/Support/Unix/DynamicLibrary.inc create mode 100644 unittests/Support/DynamicLibrary/CMakeLists.txt create mode 100644 unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp create mode 100644 unittests/Support/DynamicLibrary/PipSqueak.cxx copy lib/MC/MCDisassembler/MCSymbolizer.cpp => unittests/Support/DynamicLibrary/Pi [...]