mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 09:45:00 +00:00
fc1d7dd221
llvm-svn: 297
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
//===-- 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, const vector<Value*> ¶ms,
|
|
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()) ||
|
|
(MT->isVarArg() && 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++)
|
|
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));
|
|
}
|
|
|