use an accessor to simplify code.
[llvm/avr.git] / runtime / libprofile / FunctionProfiling.c
blob24aa2061307cc56ee5186377c04873ef97fcdfcf
1 /*===-- FunctionProfiling.c - Support library for function profiling ------===*\
2 |*
3 |* The LLVM Compiler Infrastructure
4 |*
5 |* This file is distributed under the University of Illinois Open Source
6 |* License. See LICENSE.TXT for details.
7 |*
8 |*===----------------------------------------------------------------------===*|
9 |*
10 |* This file implements the call back routines for the function profiling
11 |* instrumentation pass. This should be used with the
12 |* -insert-function-profiling LLVM pass.
14 \*===----------------------------------------------------------------------===*/
16 #include "Profiling.h"
17 #include <stdlib.h>
19 static unsigned *ArrayStart;
20 static unsigned NumElements;
22 /* FuncProfAtExitHandler - When the program exits, just write out the profiling
23 * data.
25 static void FuncProfAtExitHandler() {
26 /* Just write out the data we collected.
28 write_profiling_data(FunctionInfo, ArrayStart, NumElements);
32 /* llvm_start_func_profiling - This is the main entry point of the function
33 * profiling library. It is responsible for setting up the atexit handler.
35 int llvm_start_func_profiling(int argc, const char **argv,
36 unsigned *arrayStart, unsigned numElements) {
37 int Ret = save_arguments(argc, argv);
38 ArrayStart = arrayStart;
39 NumElements = numElements;
40 atexit(FuncProfAtExitHandler);
41 return Ret;