From 0c229c41c033d9b9ed498a6017697216cb99cc87 Mon Sep 17 00:00:00 2001 From: Tim Shen Date: Mon, 6 Mar 2017 08:26:21 +0000 Subject: [XRay] [compiler-rt] Stub out architectures we don't do arg1 logging on. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- lib/xray/xray_powerpc64.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/xray/xray_powerpc64.cc') diff --git a/lib/xray/xray_powerpc64.cc b/lib/xray/xray_powerpc64.cc index e0b62905e..6a7554cfc 100644 --- a/lib/xray/xray_powerpc64.cc +++ b/lib/xray/xray_powerpc64.cc @@ -51,7 +51,8 @@ extern "C" void __clear_cache(void *start, void *end); namespace __xray { bool patchFunctionEntry(const bool Enable, uint32_t FuncId, - const XRaySledEntry &Sled) XRAY_NEVER_INSTRUMENT { + const XRaySledEntry &Sled, + void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { if (Enable) { // lis 0, FuncId[16..32] // li 0, FuncId[0..15] @@ -93,3 +94,7 @@ bool patchFunctionTailExit(const bool Enable, const uint32_t FuncId, bool probeRequiredCPUFeatures() XRAY_NEVER_INSTRUMENT { return true; } } // namespace __xray + +extern "C" void __xray_ArgLoggerEntry() XRAY_NEVER_INSTRUMENT { + // FIXME: this will have to be implemented in the trampoline assembly file +} -- cgit v1.2.3