summaryrefslogtreecommitdiff
path: root/lib/xray/xray_mips64.cc
diff options
context:
space:
mode:
authorTim Shen <timshen91@gmail.com>2017-03-06 08:26:21 +0000
committerTim Shen <timshen91@gmail.com>2017-03-06 08:26:21 +0000
commit0c229c41c033d9b9ed498a6017697216cb99cc87 (patch)
treedba03af3c25d7dd8904e49e06e3cd6ac56d98fc1 /lib/xray/xray_mips64.cc
parent10dfe2dbc7c64b7f1a9a6f060f8f1f5940febb29 (diff)
[XRay] [compiler-rt] Stub out architectures we don't do arg1 logging on.
rL297000 forgot to include code for three architectures that appeared since I wrote the first version. This gives them the same treatment as ARMs have for now - write stubs and wait for someone to actually implement it. Patched by pelikan (Martin Pelikán)! Differential Revision: https://reviews.llvm.org/D30634 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@297003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/xray/xray_mips64.cc')
-rw-r--r--lib/xray/xray_mips64.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/xray/xray_mips64.cc b/lib/xray/xray_mips64.cc
index a2c8b5e7d..21136848c 100644
--- a/lib/xray/xray_mips64.cc
+++ b/lib/xray/xray_mips64.cc
@@ -143,8 +143,9 @@ inline static bool patchSled(const bool Enable, const uint32_t FuncId,
}
bool patchFunctionEntry(const bool Enable, const uint32_t FuncId,
- const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT {
- return patchSled(Enable, FuncId, Sled, __xray_FunctionEntry);
+ const XRaySledEntry &Sled,
+ void (*Trampoline)()) XRAY_NEVER_INSTRUMENT {
+ return patchSled(Enable, FuncId, Sled, Trampoline);
}
bool patchFunctionExit(const bool Enable, const uint32_t FuncId,
@@ -160,3 +161,7 @@ bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId,
}
} // namespace __xray
+
+extern "C" void __xray_ArgLoggerEntry() XRAY_NEVER_INSTRUMENT {
+ // FIXME: this will have to be implemented in the trampoline assembly file
+}