summaryrefslogtreecommitdiff
path: root/lib/VMCore/iCall.cpp
blob: 67826ff4bcb5168d46c9f7c07945ab7a51eafc67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===-- iCall.cpp - Implement the call & icall instructions ------*- C++ -*--=//
//
// This file implements the call and icall instructions.
//
//===----------------------------------------------------------------------===//

#include "llvm/iOther.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Method.h"

CallInst::CallInst(Method *M, vector<Value*> &params, 
                   const string &Name) 
  : Instruction(M->getReturnType(), Instruction::Call, Name) {

  Operands.reserve(1+params.size());
  Operands.push_back(Use(M, this));

  const MethodType* MT = M->getMethodType();
  const MethodType::ParamTypes &PL = MT->getParamTypes();
  assert(params.size() == PL.size() && "Calling a function with bad signature");
#ifndef NDEBUG
  MethodType::ParamTypes::const_iterator It = PL.begin();
#endif
  for (unsigned i = 0; i < params.size(); i++) {
    assert(*It++ == params[i]->getType() && "Call Operands not correct type!");
    Operands.push_back(Use(params[i], this));
  }
}

CallInst::CallInst(const CallInst &CI) 
  : Instruction(CI.getType(), Instruction::Call) {
  Operands.reserve(CI.Operands.size());
  for (unsigned i = 0; i < CI.Operands.size(); ++i)
    Operands.push_back(Use(CI.Operands[i], this));
}