2004-03-08 18:06:13 +01:00
|
|
|
//===- ProfilingUtils.h - Helper functions shared by profilers --*- C++ -*-===//
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2004-03-08 18:06:13 +01:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2004-03-08 18:06:13 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-03-06 11:36:00 +01:00
|
|
|
// This file defines a few helper functions which are used by profile
|
2004-03-08 18:06:13 +01:00
|
|
|
// instrumentation code to instrument the code. This allows the profiler pass
|
|
|
|
// to worry about *what* to insert, and these functions take care of *how* to do
|
|
|
|
// it.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PROFILINGUTILS_H
|
|
|
|
#define PROFILINGUTILS_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Function;
|
|
|
|
class GlobalValue;
|
|
|
|
class BasicBlock;
|
2011-01-29 02:09:53 +01:00
|
|
|
class PointerType;
|
2004-03-08 18:06:13 +01:00
|
|
|
|
|
|
|
void InsertProfilingInitCall(Function *MainFn, const char *FnName,
|
2011-01-29 02:09:53 +01:00
|
|
|
GlobalValue *Arr = 0,
|
|
|
|
PointerType *arrayType = 0);
|
2004-03-08 18:06:13 +01:00
|
|
|
void IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
|
2011-01-29 02:09:53 +01:00
|
|
|
GlobalValue *CounterArray,
|
|
|
|
bool beginning = true);
|
2004-03-08 18:06:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|