diff options
author | Eli Bendersky <eli.bendersky@intel.com> | 2012-03-13 08:33:15 +0000 |
---|---|---|
committer | Eli Bendersky <eli.bendersky@intel.com> | 2012-03-13 08:33:15 +0000 |
commit | 61b1851a205cb8dd29c1d3d4231efb8f8f7da283 (patch) | |
tree | 8282d3ba79077e426d5875c82f3c6f97513f0b77 /lib/ExecutionEngine/OProfileJIT/Makefile | |
parent | c007ba86f31ebe3a1c4cdba5fa23260caaf81e0f (diff) | |
download | external_llvm-61b1851a205cb8dd29c1d3d4231efb8f8f7da283.zip external_llvm-61b1851a205cb8dd29c1d3d4231efb8f8f7da283.tar.gz external_llvm-61b1851a205cb8dd29c1d3d4231efb8f8f7da283.tar.bz2 |
Add profiling support for Intel Parallel Amplifier XE (VTune) for JITted code in LLVM.
Also refactor the existing OProfile profiling code to reuse the same interfaces with the VTune profiling code.
In addition, unit tests for the profiling interfaces were added.
This patch was prepared by Andrew Kaylor and Daniel Malea, and reviewed in the llvm-commits list by Jim Grosbach
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152620 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/OProfileJIT/Makefile')
-rw-r--r-- | lib/ExecutionEngine/OProfileJIT/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/OProfileJIT/Makefile b/lib/ExecutionEngine/OProfileJIT/Makefile new file mode 100644 index 0000000..fd3adce --- /dev/null +++ b/lib/ExecutionEngine/OProfileJIT/Makefile @@ -0,0 +1,18 @@ +##===- lib/ExecutionEngine/OProfileJIT/Makefile ------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL = ../../.. +LIBRARYNAME = LLVMOProfileJIT + +include $(LEVEL)/Makefile.config + +SOURCES += OProfileJITEventListener.cpp \ + OProfileWrapper.cpp +CPPFLAGS += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/.. + +include $(LLVM_SRC_ROOT)/Makefile.rules |