This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 70b43c3 [llvm-cov] Teach the coverage exporter about instantiation coverage new 916b366 [XRay] ARM 32-bit no-Thumb support in LLVM
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: include/llvm/CodeGen/AsmPrinter.h | 28 +++++ include/llvm/Target/Target.td | 10 +- include/llvm/Target/TargetOpcodes.def | 17 +++ include/llvm/Target/TargetSubtargetInfo.h | 2 + lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 10 ++ lib/CodeGen/XRayInstrumentation.cpp | 115 +++++++++++++++------ lib/Target/ARM/ARMAsmPrinter.cpp | 9 ++ lib/Target/ARM/ARMAsmPrinter.h | 12 +++ lib/Target/ARM/ARMBaseInstrInfo.h | 4 + lib/Target/ARM/ARMMCInstLower.cpp | 94 +++++++++++++++++ lib/Target/ARM/ARMSubtarget.cpp | 5 + lib/Target/ARM/ARMSubtarget.h | 2 + lib/Target/X86/X86AsmPrinter.h | 23 ----- lib/Target/X86/X86MCInstLower.cpp | 10 -- lib/Target/X86/X86Subtarget.h | 2 + .../ARM/xray-armv6-attribute-instrumentation.ll | 24 +++++ .../ARM/xray-armv7-attribute-instrumentation.ll | 24 +++++ 17 files changed, 328 insertions(+), 63 deletions(-) create mode 100644 test/CodeGen/ARM/xray-armv6-attribute-instrumentation.ll create mode 100644 test/CodeGen/ARM/xray-armv7-attribute-instrumentation.ll