2001-07-07 10:36:50 +02:00
|
|
|
//===-- iCall.cpp - Implement the call & icall instructions ------*- C++ -*--=//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2001-07-07 10:36:50 +02:00
|
|
|
// This file implements the call and icall instructions.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/iOther.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Method.h"
|
|
|
|
|
2001-07-07 10:36:50 +02:00
|
|
|
CallInst::CallInst(Method *M, vector<Value*> ¶ms,
|
2001-06-06 22:29:01 +02:00
|
|
|
const string &Name)
|
2001-07-07 10:36:50 +02:00
|
|
|
: Instruction(M->getReturnType(), Instruction::Call, Name) {
|
|
|
|
|
|
|
|
Operands.reserve(1+params.size());
|
|
|
|
Operands.push_back(Use(M, this));
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
const MethodType* MT = M->getMethodType();
|
|
|
|
const MethodType::ParamTypes &PL = MT->getParamTypes();
|
2001-06-28 01:41:11 +02:00
|
|
|
assert(params.size() == PL.size() && "Calling a function with bad signature");
|
2001-06-06 22:29:01 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
MethodType::ParamTypes::const_iterator It = PL.begin();
|
|
|
|
#endif
|
|
|
|
for (unsigned i = 0; i < params.size(); i++) {
|
2001-07-07 10:36:50 +02:00
|
|
|
assert(*It++ == params[i]->getType() && "Call Operands not correct type!");
|
|
|
|
Operands.push_back(Use(params[i], this));
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst::CallInst(const CallInst &CI)
|
2001-07-07 10:36:50 +02:00
|
|
|
: 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));
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
|