Eliminate use of ctors that take vectors.
[oota-llvm.git] / lib / Transforms / Instrumentation / ProfilingUtils.cpp
1 //===- ProfilingUtils.cpp - Helper functions shared by profilers ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This files implements a few helper functions which are used by profile
11 // instrumentation code to instrument the code.  This allows the profiler pass
12 // to worry about *what* to insert, and these functions take care of *how* to do
13 // it.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "ProfilingUtils.h"
18 #include "llvm/Constants.h"
19 #include "llvm/DerivedTypes.h"
20 #include "llvm/Instructions.h"
21 #include "llvm/Module.h"
22
23 void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName,
24                                    GlobalValue *Array) {
25   const Type *ArgVTy = PointerType::get(PointerType::get(Type::Int8Ty));
26   const PointerType *UIntPtr = PointerType::get(Type::Int32Ty);
27   Module &M = *MainFn->getParent();
28   Constant *InitFn = M.getOrInsertFunction(FnName, Type::Int32Ty, Type::Int32Ty,
29                                            ArgVTy, UIntPtr, Type::Int32Ty,
30                                            (Type *)0);
31
32   // This could force argc and argv into programs that wouldn't otherwise have
33   // them, but instead we just pass null values in.
34   std::vector<Value*> Args(4);
35   Args[0] = Constant::getNullValue(Type::Int32Ty);
36   Args[1] = Constant::getNullValue(ArgVTy);
37
38   // Skip over any allocas in the entry block.
39   BasicBlock *Entry = MainFn->begin();
40   BasicBlock::iterator InsertPos = Entry->begin();
41   while (isa<AllocaInst>(InsertPos)) ++InsertPos;
42
43   std::vector<Constant*> GEPIndices(2, Constant::getNullValue(Type::Int32Ty));
44   unsigned NumElements = 0;
45   if (Array) {
46     Args[2] = ConstantExpr::getGetElementPtr(Array, GEPIndices);
47     NumElements =
48       cast<ArrayType>(Array->getType()->getElementType())->getNumElements();
49   } else {
50     // If this profiling instrumentation doesn't have a constant array, just
51     // pass null.
52     Args[2] = ConstantPointerNull::get(UIntPtr);
53   }
54   Args[3] = ConstantInt::get(Type::Int32Ty, NumElements);
55
56   Instruction *InitCall = new CallInst(InitFn, &Args[0], Args.size(),
57                                        "newargc", InsertPos);
58
59   // If argc or argv are not available in main, just pass null values in.
60   Function::arg_iterator AI;
61   switch (MainFn->arg_size()) {
62   default:
63   case 2:
64     AI = MainFn->arg_begin(); ++AI;
65     if (AI->getType() != ArgVTy) {
66       Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy, 
67                                                             false);
68       InitCall->setOperand(2, 
69           CastInst::create(opcode, AI, ArgVTy, "argv.cast", InitCall));
70     } else {
71       InitCall->setOperand(2, AI);
72     }
73     /* FALL THROUGH */
74
75   case 1:
76     AI = MainFn->arg_begin();
77     // If the program looked at argc, have it look at the return value of the
78     // init call instead.
79     if (AI->getType() != Type::Int32Ty) {
80       Instruction::CastOps opcode;
81       if (!AI->use_empty()) {
82         opcode = CastInst::getCastOpcode(InitCall, true, AI->getType(), true);
83         AI->replaceAllUsesWith(
84           CastInst::create(opcode, InitCall, AI->getType(), "", InsertPos));
85       }
86       opcode = CastInst::getCastOpcode(AI, true, Type::Int32Ty, true);
87       InitCall->setOperand(1, 
88           CastInst::create(opcode, AI, Type::Int32Ty, "argc.cast", InitCall));
89     } else {
90       AI->replaceAllUsesWith(InitCall);
91       InitCall->setOperand(1, AI);
92     }
93
94   case 0: break;
95   }
96 }
97
98 void llvm::IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
99                                    GlobalValue *CounterArray) {
100   // Insert the increment after any alloca or PHI instructions...
101   BasicBlock::iterator InsertPos = BB->begin();
102   while (isa<AllocaInst>(InsertPos) || isa<PHINode>(InsertPos))
103     ++InsertPos;
104
105   // Create the getelementptr constant expression
106   std::vector<Constant*> Indices(2);
107   Indices[0] = Constant::getNullValue(Type::Int32Ty);
108   Indices[1] = ConstantInt::get(Type::Int32Ty, CounterNum);
109   Constant *ElementPtr = ConstantExpr::getGetElementPtr(CounterArray, Indices);
110
111   // Load, increment and store the value back.
112   Value *OldVal = new LoadInst(ElementPtr, "OldFuncCounter", InsertPos);
113   Value *NewVal = BinaryOperator::create(Instruction::Add, OldVal,
114                                          ConstantInt::get(Type::Int32Ty, 1),
115                                          "NewFuncCounter", InsertPos);
116   new StoreInst(NewVal, ElementPtr, InsertPos);
117 }