2011-01-29 01:09:53 +00:00
|
|
|
/*===-- Profiling.h - Profiling support library support routines ----------===*\
|
2006-11-17 03:32:33 +00:00
|
|
|
|*
|
|
|
|
|* The LLVM Compiler Infrastructure
|
|
|
|
|*
|
2011-01-29 01:09:53 +00:00
|
|
|
|* This file is distributed under the University of Illinois Open Source
|
|
|
|
|* License. See LICENSE.TXT for details.
|
2006-11-17 03:32:33 +00:00
|
|
|
|*
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|*
|
|
|
|
|* This file defines functions shared by the various different profiling
|
|
|
|
|* implementations.
|
|
|
|
|*
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#ifndef PROFILING_H
|
|
|
|
#define PROFILING_H
|
|
|
|
|
2012-08-24 18:31:44 +00:00
|
|
|
#include "llvm/Analysis/ProfileDataTypes.h" /* for enum ProfilingType */
|
2006-11-17 03:32:33 +00:00
|
|
|
|
|
|
|
/* save_arguments - Save argc and argv as passed into the program for the file
|
|
|
|
* we output.
|
|
|
|
*/
|
|
|
|
int save_arguments(int argc, const char **argv);
|
|
|
|
|
2011-01-29 01:09:53 +00:00
|
|
|
/*
|
|
|
|
* Retrieves the file descriptor for the profile file.
|
|
|
|
*/
|
|
|
|
int getOutFile();
|
|
|
|
|
2006-11-17 03:32:33 +00:00
|
|
|
/* write_profiling_data - Write out a typed packet of profiling data to the
|
|
|
|
* current output file.
|
|
|
|
*/
|
|
|
|
void write_profiling_data(enum ProfilingType PT, unsigned *Start,
|
|
|
|
unsigned NumElements);
|
|
|
|
|
|
|
|
#endif
|