This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 987d58d [PGO] Delay profile dir creation until write new b66fdad [Compiler-rt][XRAY][MIPS] Support xray on mips/mipsel/mips64/ [...]
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: cmake/config-ix.cmake | 2 +- lib/xray/CMakeLists.txt | 20 +++++ lib/xray/tests/CMakeLists.txt | 2 +- lib/xray/xray_interface.cc | 4 + lib/xray/xray_mips.cc | 153 ++++++++++++++++++++++++++++++++ lib/xray/xray_mips64.cc | 162 ++++++++++++++++++++++++++++++++++ lib/xray/xray_trampoline_mips.S | 110 +++++++++++++++++++++++ lib/xray/xray_trampoline_mips64.S | 136 ++++++++++++++++++++++++++++ lib/xray/xray_tsc.h | 2 +- test/xray/TestCases/Linux/pic_test.cc | 33 +++++++ 10 files changed, 621 insertions(+), 3 deletions(-) create mode 100644 lib/xray/xray_mips.cc create mode 100644 lib/xray/xray_mips64.cc create mode 100644 lib/xray/xray_trampoline_mips.S create mode 100644 lib/xray/xray_trampoline_mips64.S create mode 100644 test/xray/TestCases/Linux/pic_test.cc