2001-10-13 15:01:45 +08:00
|
|
|
//===-- iCall.cpp - Implement the call & invoke instructions -----*- C++ -*--=//
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
2001-10-13 15:01:45 +08:00
|
|
|
// This file implements the call and invoke instructions.
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/iOther.h"
|
2001-10-13 15:01:45 +08:00
|
|
|
#include "llvm/iTerminators.h"
|
2001-06-07 04:29:01 +08:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2002-04-08 04:49:59 +08:00
|
|
|
#include "llvm/Function.h"
|
2001-06-07 04:29:01 +08:00
|
|
|
|
2001-10-13 15:01:45 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// CallInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-07 16:36:50 +08:00
|
|
|
|
2002-04-08 04:49:59 +08:00
|
|
|
CallInst::CallInst(Value *Func, const std::vector<Value*> ¶ms,
|
2002-09-10 23:45:53 +08:00
|
|
|
const std::string &Name, Instruction *InsertBefore)
|
2002-04-08 04:49:59 +08:00
|
|
|
: Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
|
2001-12-04 08:03:30 +08:00
|
|
|
->getElementType())->getReturnType(),
|
2002-09-10 23:45:53 +08:00
|
|
|
Instruction::Call, Name, InsertBefore) {
|
2001-07-07 16:36:50 +08:00
|
|
|
Operands.reserve(1+params.size());
|
2002-04-08 04:49:59 +08:00
|
|
|
Operands.push_back(Use(Func, this));
|
2001-10-13 15:01:45 +08:00
|
|
|
|
2002-04-05 06:19:18 +08:00
|
|
|
const FunctionType *MTy =
|
2002-04-08 04:49:59 +08:00
|
|
|
cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
|
2001-06-07 04:29:01 +08:00
|
|
|
|
2002-04-05 06:19:18 +08:00
|
|
|
const FunctionType::ParamTypes &PL = MTy->getParamTypes();
|
2003-02-01 11:33:22 +08:00
|
|
|
assert(params.size() == PL.size() ||
|
|
|
|
(MTy->isVarArg() && params.size() > PL.size()) &&
|
2001-07-26 06:47:55 +08:00
|
|
|
"Calling a function with bad signature");
|
|
|
|
for (unsigned i = 0; i < params.size(); i++)
|
2001-07-07 16:36:50 +08:00
|
|
|
Operands.push_back(Use(params[i], this));
|
2001-06-07 04:29:01 +08:00
|
|
|
}
|
|
|
|
|
2003-02-01 08:39:58 +08:00
|
|
|
CallInst::CallInst(Value *Func, const std::string &Name,
|
2003-02-01 11:33:22 +08:00
|
|
|
Instruction *InsertBefore)
|
2003-02-01 08:39:58 +08:00
|
|
|
: Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
|
|
|
|
->getElementType())->getReturnType(),
|
|
|
|
Instruction::Call, Name, InsertBefore) {
|
|
|
|
Operands.reserve(1);
|
|
|
|
Operands.push_back(Use(Func, this));
|
|
|
|
|
|
|
|
const FunctionType *MTy =
|
|
|
|
cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
|
|
|
|
|
|
|
|
const FunctionType::ParamTypes &PL = MTy->getParamTypes();
|
2003-02-01 11:33:22 +08:00
|
|
|
assert(PL.empty() && "Calling a function with bad signature");
|
2003-02-01 08:39:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CallInst::CallInst(Value *Func, Value* A, const std::string &Name,
|
|
|
|
Instruction *InsertBefore)
|
|
|
|
: Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
|
|
|
|
->getElementType())->getReturnType(),
|
|
|
|
Instruction::Call, Name, InsertBefore) {
|
|
|
|
Operands.reserve(2);
|
|
|
|
Operands.push_back(Use(Func, this));
|
|
|
|
|
|
|
|
const FunctionType *MTy =
|
|
|
|
cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
|
|
|
|
|
|
|
|
const FunctionType::ParamTypes &PL = MTy->getParamTypes();
|
2003-02-01 11:33:22 +08:00
|
|
|
assert(PL.size() == 1 || (MTy->isVarArg() && PL.empty()) &&
|
2003-02-01 08:39:58 +08:00
|
|
|
"Calling a function with bad signature");
|
|
|
|
Operands.push_back(Use(A, this));
|
|
|
|
}
|
|
|
|
|
2001-06-07 04:29:01 +08:00
|
|
|
CallInst::CallInst(const CallInst &CI)
|
2001-07-07 16:36:50 +08: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-07 04:29:01 +08:00
|
|
|
}
|
|
|
|
|
2001-10-13 15:01:45 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// InvokeInst Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-04-10 02:36:52 +08:00
|
|
|
InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal,
|
2002-01-21 06:54:45 +08:00
|
|
|
BasicBlock *IfException,
|
|
|
|
const std::vector<Value*> ¶ms,
|
2002-09-10 23:45:53 +08:00
|
|
|
const std::string &Name, Instruction *InsertBefore)
|
2002-04-08 04:49:59 +08:00
|
|
|
: TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
|
2001-12-04 08:03:30 +08:00
|
|
|
->getElementType())->getReturnType(),
|
2002-09-10 23:45:53 +08:00
|
|
|
Instruction::Invoke, Name, InsertBefore) {
|
2001-10-13 15:01:45 +08:00
|
|
|
Operands.reserve(3+params.size());
|
2002-04-08 04:49:59 +08:00
|
|
|
Operands.push_back(Use(Func, this));
|
2002-04-10 02:36:52 +08:00
|
|
|
Operands.push_back(Use((Value*)IfNormal, this));
|
|
|
|
Operands.push_back(Use((Value*)IfException, this));
|
2002-04-05 06:19:18 +08:00
|
|
|
const FunctionType *MTy =
|
2002-04-08 04:49:59 +08:00
|
|
|
cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
|
2001-10-13 15:01:45 +08:00
|
|
|
|
2002-04-05 06:19:18 +08:00
|
|
|
const FunctionType::ParamTypes &PL = MTy->getParamTypes();
|
2001-10-13 15:01:45 +08:00
|
|
|
assert((params.size() == PL.size()) ||
|
|
|
|
(MTy->isVarArg() && params.size() > PL.size()) &&
|
|
|
|
"Calling a function with bad signature");
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < params.size(); i++)
|
|
|
|
Operands.push_back(Use(params[i], this));
|
|
|
|
}
|
|
|
|
|
|
|
|
InvokeInst::InvokeInst(const InvokeInst &CI)
|
|
|
|
: TerminatorInst(CI.getType(), Instruction::Invoke) {
|
|
|
|
Operands.reserve(CI.Operands.size());
|
|
|
|
for (unsigned i = 0; i < CI.Operands.size(); ++i)
|
|
|
|
Operands.push_back(Use(CI.Operands[i], this));
|
|
|
|
}
|
|
|
|
|