2004-03-08 17:06:13 +00:00
|
|
|
//===- ProfilingUtils.h - Helper functions shared by profilers --*- C++ -*-===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-03-08 17:06:13 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-03-08 17:06:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-03-06 10:36:00 +00:00
|
|
|
// This file defines a few helper functions which are used by profile
|
2004-03-08 17:06:13 +00: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;
|
|
|
|
|
|
|
|
void InsertProfilingInitCall(Function *MainFn, const char *FnName,
|
2004-05-03 22:06:33 +00:00
|
|
|
GlobalValue *Arr = 0);
|
2004-03-08 17:06:13 +00:00
|
|
|
void IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
|
2004-07-18 00:44:37 +00:00
|
|
|
GlobalValue *CounterArray);
|
2004-03-08 17:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|