summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/xray/xray_mips.cc
diff options
context:
space:
mode:
authorKeith Wyss <wyssman@gmail.com>2018-04-17 23:19:23 +0000
committerKeith Wyss <wyssman@gmail.com>2018-04-17 23:19:23 +0000
commit557890126aba7939de2d7e0b5656af8d9f2edf0a (patch)
treef00a00f55502d6c17cdcd889fd6fbd4be619c146 /compiler-rt/lib/xray/xray_mips.cc
parent8b20b7dc2bb9b995d94ab020eaaf2d488d935628 (diff)
downloadbcm5719-llvm-557890126aba7939de2d7e0b5656af8d9f2edf0a.tar.gz
bcm5719-llvm-557890126aba7939de2d7e0b5656af8d9f2edf0a.zip
[XRay][compiler-rt] Add noop patch functions for unsupported arches.
Summary: Typed event patching is implemented for x86-64, but functions must be defined for other arches. Reviewers: dberris, pelikan Subscribers: nemanjai, javed.absar, delcypher, #sanitizers, llvm-commits Differential Revision: https://reviews.llvm.org/D45749 llvm-svn: 330231
Diffstat (limited to 'compiler-rt/lib/xray/xray_mips.cc')
-rw-r--r--compiler-rt/lib/xray/xray_mips.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler-rt/lib/xray/xray_mips.cc b/compiler-rt/lib/xray/xray_mips.cc
index cd863304db2..6f824382866 100644
--- a/compiler-rt/lib/xray/xray_mips.cc
+++ b/compiler-rt/lib/xray/xray_mips.cc
@@ -158,6 +158,12 @@ bool patchCustomEvent(const bool Enable, const uint32_t FuncId,
return false;
}
+bool patchTypedEvent(const bool Enable, const uint32_t FuncId,
+ const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT {
+ // FIXME: Implement in mips?
+ return false;
+}
+
} // namespace __xray
extern "C" void __xray_ArgLoggerEntry() XRAY_NEVER_INSTRUMENT {
OpenPOWER on IntegriCloud