2004-03-08 17:06:13 +00:00
|
|
|
//===- ProfilingUtils.cpp - Helper functions shared by profilers ----------===//
|
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 implements 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ProfilingUtils.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Instructions.h"
|
2009-07-06 18:42:36 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2004-03-08 17:06:13 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
|
|
|
|
void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName,
|
|
|
|
GlobalValue *Array) {
|
2009-08-13 21:58:54 +00:00
|
|
|
LLVMContext &Context = MainFn->getContext();
|
2007-12-17 01:12:55 +00:00
|
|
|
const Type *ArgVTy =
|
2009-10-06 15:40:36 +00:00
|
|
|
PointerType::getUnqual(Type::getInt8PtrTy(Context));
|
2009-08-13 21:58:54 +00:00
|
|
|
const PointerType *UIntPtr =
|
2009-10-06 15:40:36 +00:00
|
|
|
Type::getInt32PtrTy(Context);
|
2004-03-08 17:06:13 +00:00
|
|
|
Module &M = *MainFn->getParent();
|
2009-08-13 21:58:54 +00:00
|
|
|
Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
|
|
|
|
Type::getInt32Ty(Context),
|
|
|
|
ArgVTy, UIntPtr,
|
|
|
|
Type::getInt32Ty(Context),
|
2005-10-23 04:37:20 +00:00
|
|
|
(Type *)0);
|
2004-03-08 17:06:13 +00:00
|
|
|
|
|
|
|
// This could force argc and argv into programs that wouldn't otherwise have
|
|
|
|
// them, but instead we just pass null values in.
|
|
|
|
std::vector<Value*> Args(4);
|
2009-08-13 21:58:54 +00:00
|
|
|
Args[0] = Constant::getNullValue(Type::getInt32Ty(Context));
|
2009-07-31 20:28:14 +00:00
|
|
|
Args[1] = Constant::getNullValue(ArgVTy);
|
2004-03-08 17:06:13 +00:00
|
|
|
|
|
|
|
// Skip over any allocas in the entry block.
|
|
|
|
BasicBlock *Entry = MainFn->begin();
|
|
|
|
BasicBlock::iterator InsertPos = Entry->begin();
|
|
|
|
while (isa<AllocaInst>(InsertPos)) ++InsertPos;
|
|
|
|
|
2009-08-13 21:58:54 +00:00
|
|
|
std::vector<Constant*> GEPIndices(2,
|
|
|
|
Constant::getNullValue(Type::getInt32Ty(Context)));
|
2004-05-03 22:06:33 +00:00
|
|
|
unsigned NumElements = 0;
|
|
|
|
if (Array) {
|
2009-07-29 18:55:55 +00:00
|
|
|
Args[2] = ConstantExpr::getGetElementPtr(Array, &GEPIndices[0],
|
2007-02-19 07:34:47 +00:00
|
|
|
GEPIndices.size());
|
2004-05-03 22:06:33 +00:00
|
|
|
NumElements =
|
|
|
|
cast<ArrayType>(Array->getType()->getElementType())->getNumElements();
|
|
|
|
} else {
|
|
|
|
// If this profiling instrumentation doesn't have a constant array, just
|
|
|
|
// pass null.
|
2009-07-30 23:03:37 +00:00
|
|
|
Args[2] = ConstantPointerNull::get(UIntPtr);
|
2004-05-03 22:06:33 +00:00
|
|
|
}
|
2009-08-13 21:58:54 +00:00
|
|
|
Args[3] = ConstantInt::get(Type::getInt32Ty(Context), NumElements);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2010-06-28 12:31:35 +00:00
|
|
|
CallInst *InitCall = CallInst::Create(InitFn, Args.begin(), Args.end(),
|
|
|
|
"newargc", InsertPos);
|
2004-03-08 17:06:13 +00:00
|
|
|
|
|
|
|
// If argc or argv are not available in main, just pass null values in.
|
2005-03-15 04:54:21 +00:00
|
|
|
Function::arg_iterator AI;
|
|
|
|
switch (MainFn->arg_size()) {
|
2004-03-08 17:06:13 +00:00
|
|
|
default:
|
|
|
|
case 2:
|
2005-03-15 04:54:21 +00:00
|
|
|
AI = MainFn->arg_begin(); ++AI;
|
2004-03-08 17:06:13 +00:00
|
|
|
if (AI->getType() != ArgVTy) {
|
2006-12-21 07:49:49 +00:00
|
|
|
Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy,
|
|
|
|
false);
|
2010-06-28 12:31:35 +00:00
|
|
|
InitCall->setArgOperand(1,
|
2008-05-16 19:29:10 +00:00
|
|
|
CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall));
|
2004-03-08 17:06:13 +00:00
|
|
|
} else {
|
2010-06-28 12:31:35 +00:00
|
|
|
InitCall->setArgOperand(1, AI);
|
2004-03-08 17:06:13 +00:00
|
|
|
}
|
2006-12-13 00:50:17 +00:00
|
|
|
/* FALL THROUGH */
|
2004-03-08 17:06:13 +00:00
|
|
|
|
|
|
|
case 1:
|
2005-03-15 04:54:21 +00:00
|
|
|
AI = MainFn->arg_begin();
|
2004-03-08 17:06:13 +00:00
|
|
|
// If the program looked at argc, have it look at the return value of the
|
|
|
|
// init call instead.
|
2010-02-15 16:12:20 +00:00
|
|
|
if (!AI->getType()->isIntegerTy(32)) {
|
2006-12-18 08:47:13 +00:00
|
|
|
Instruction::CastOps opcode;
|
|
|
|
if (!AI->use_empty()) {
|
2006-12-21 07:49:49 +00:00
|
|
|
opcode = CastInst::getCastOpcode(InitCall, true, AI->getType(), true);
|
2006-11-27 01:05:10 +00:00
|
|
|
AI->replaceAllUsesWith(
|
2008-05-16 19:29:10 +00:00
|
|
|
CastInst::Create(opcode, InitCall, AI->getType(), "", InsertPos));
|
2006-12-18 08:47:13 +00:00
|
|
|
}
|
2009-08-13 21:58:54 +00:00
|
|
|
opcode = CastInst::getCastOpcode(AI, true,
|
|
|
|
Type::getInt32Ty(Context), true);
|
2010-06-28 12:31:35 +00:00
|
|
|
InitCall->setArgOperand(0,
|
2009-08-13 21:58:54 +00:00
|
|
|
CastInst::Create(opcode, AI, Type::getInt32Ty(Context),
|
|
|
|
"argc.cast", InitCall));
|
2004-03-08 17:06:13 +00:00
|
|
|
} else {
|
|
|
|
AI->replaceAllUsesWith(InitCall);
|
2010-06-28 12:31:35 +00:00
|
|
|
InitCall->setArgOperand(0, AI);
|
2004-03-08 17:06:13 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2004-03-08 17:06:13 +00:00
|
|
|
case 0: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void llvm::IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
|
2004-07-18 00:44:37 +00:00
|
|
|
GlobalValue *CounterArray) {
|
2004-03-08 17:06:13 +00:00
|
|
|
// Insert the increment after any alloca or PHI instructions...
|
2008-05-23 21:05:58 +00:00
|
|
|
BasicBlock::iterator InsertPos = BB->getFirstNonPHI();
|
|
|
|
while (isa<AllocaInst>(InsertPos))
|
2004-03-08 17:06:13 +00:00
|
|
|
++InsertPos;
|
|
|
|
|
2009-08-13 21:58:54 +00:00
|
|
|
LLVMContext &Context = BB->getContext();
|
|
|
|
|
2004-03-08 17:06:13 +00:00
|
|
|
// Create the getelementptr constant expression
|
|
|
|
std::vector<Constant*> Indices(2);
|
2009-08-13 21:58:54 +00:00
|
|
|
Indices[0] = Constant::getNullValue(Type::getInt32Ty(Context));
|
|
|
|
Indices[1] = ConstantInt::get(Type::getInt32Ty(Context), CounterNum);
|
2007-02-19 07:34:47 +00:00
|
|
|
Constant *ElementPtr =
|
2009-07-29 18:55:55 +00:00
|
|
|
ConstantExpr::getGetElementPtr(CounterArray, &Indices[0],
|
2009-07-06 18:42:36 +00:00
|
|
|
Indices.size());
|
2004-03-08 17:06:13 +00:00
|
|
|
|
|
|
|
// Load, increment and store the value back.
|
|
|
|
Value *OldVal = new LoadInst(ElementPtr, "OldFuncCounter", InsertPos);
|
2008-05-16 19:29:10 +00:00
|
|
|
Value *NewVal = BinaryOperator::Create(Instruction::Add, OldVal,
|
2009-08-13 21:58:54 +00:00
|
|
|
ConstantInt::get(Type::getInt32Ty(Context), 1),
|
2004-03-08 17:06:13 +00:00
|
|
|
"NewFuncCounter", InsertPos);
|
|
|
|
new StoreInst(NewVal, ElementPtr, InsertPos);
|
|
|
|
}
|