This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8f80157cb00 [X86] Don't do anything in ReplaceNodeResults for (v2i32 (f [...] new d67818ff54f [MinGW] [ARM] Add stubs for potential automatic dllimported [...] new 53f45710293 [MinGW] [X86] Pass true for the second parameter to StubVal [...] new 48aa7c74983 [AArch64] Hook up the missed machine operand flag name for [...] new 6557447c425 [XRay] FDR Record Producer/Consumer Implementation
The 4 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/XRay/FDRRecordConsumer.h | 55 +++++++++++ include/llvm/XRay/FDRRecordProducer.h | 46 ++++++++++ lib/Target/AArch64/AArch64InstrInfo.cpp | 3 +- lib/Target/ARM/ARMAsmPrinter.cpp | 22 ++++- lib/Target/ARM/ARMBaseInstrInfo.cpp | 1 + lib/Target/ARM/ARMISelLowering.cpp | 11 ++- lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h | 5 + lib/Target/X86/X86MCInstLower.cpp | 3 +- lib/XRay/CMakeLists.txt | 2 + lib/XRay/FDRRecordProducer.cpp | 125 +++++++++++++++++++++++++ lib/XRay/LogBuilderConsumer.cpp | 38 ++++++++ test/CodeGen/ARM/Windows/mingw-refptr.ll | 79 ++++++++++++++++ test/CodeGen/ARM/Windows/pic.ll | 5 +- test/CodeGen/ARM/emutls_generic.ll | 5 +- unittests/XRay/CMakeLists.txt | 1 + unittests/XRay/FDRProducerConsumerTest.cpp | 141 +++++++++++++++++++++++++++++ 16 files changed, 529 insertions(+), 13 deletions(-) create mode 100644 include/llvm/XRay/FDRRecordConsumer.h create mode 100644 include/llvm/XRay/FDRRecordProducer.h create mode 100644 lib/XRay/FDRRecordProducer.cpp create mode 100644 lib/XRay/LogBuilderConsumer.cpp create mode 100644 test/CodeGen/ARM/Windows/mingw-refptr.ll create mode 100644 unittests/XRay/FDRProducerConsumerTest.cpp