From df5a7daff9c7664bff8b713e8ed5155319bc6041 Mon Sep 17 00:00:00 2001 From: Jeffrey Yasskin Date: Thu, 25 Jun 2009 02:04:04 +0000 Subject: Add a JITEventListener interface that gets called back when a new function is emitted or the machine code for a function is freed. Chris mentioned that we may also want a notification when a stub is emitted, but that'll be a future change. I intend to use this to tell oprofile where functions are emitted and what lines correspond to what addresses. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74157 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ExecutionEngine/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 unittests/ExecutionEngine/Makefile (limited to 'unittests/ExecutionEngine/Makefile') diff --git a/unittests/ExecutionEngine/Makefile b/unittests/ExecutionEngine/Makefile new file mode 100644 index 0000000..e837a7d --- /dev/null +++ b/unittests/ExecutionEngine/Makefile @@ -0,0 +1,19 @@ +##===- unittests/ExecutionEngine/Makefile ------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. + +include $(LEVEL)/Makefile.config + +PARALLEL_DIRS = JIT + +include $(LEVEL)/Makefile.common + +clean:: + $(Verb) $(RM) -f *Tests -- cgit v1.1