teak-llvm/clang/test/CodeGen/xray-log-args.cpp
Dean Michael Berris 418da3fe80 [XRay] [clang] Allow logging the first argument of a function call.
Summary:
Functions with the "xray_log_args" attribute will tell LLVM to emit a special
XRay sled for compiler-rt to copy any call arguments to your logging handler.

Reviewers: dberris

Reviewed By: dberris

Subscribers: cfe-commits

Differential Revision: https://reviews.llvm.org/D29704

llvm-svn: 296999
2017-03-06 07:08:21 +00:00

14 lines
542 B
C++

// RUN: %clang_cc1 %s -fxray-instrument -std=c++11 -x c++ -emit-llvm -o - -triple x86_64-unknown-linux-gnu | FileCheck %s
// Make sure that the LLVM attribute for XRay-annotated functions do show up.
[[clang::xray_always_instrument,clang::xray_log_args(1)]] void foo(int a) {
// CHECK: define void @_Z3fooi(i32 %a) #0
};
[[clang::xray_log_args(1)]] void bar(int a) {
// CHECK: define void @_Z3bari(i32 %a) #1
};
// CHECK: #0 = {{.*}}"function-instrument"="xray-always"{{.*}}"xray-log-args"="1"
// CHECK-NOT: #1 = {{.*}}"xray-log-args"="1"