X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FiCall.cpp;h=9e5ca0178752445dec89f23b6b9b2ba1de6616e8;hb=96ad1ec87626d66bf00ffd18954e6ce4b1aec26a;hp=13f07d7f578c26bcf45f0614133c179ee7c629cb;hpb=ca24d381e713227094fbc0223d22b3a6e99541ce;p=oota-llvm.git diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index 13f07d7f578..9e5ca017875 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -1,27 +1,33 @@ -//===-- iCall.cpp - Implement the call & icall instructions ------*- C++ -*--=// +//===-- iCall.cpp - Implement the call & invoke instructions -----*- C++ -*--=// // -// This file implements the call and icall instructions. +// This file implements the call and invoke instructions. // //===----------------------------------------------------------------------===// #include "llvm/iOther.h" +#include "llvm/iTerminators.h" #include "llvm/DerivedTypes.h" -#include "llvm/Method.h" +#include "llvm/Function.h" -CallInst::CallInst(Method *M, const vector ¶ms, - const string &Name) - : Instruction(M->getReturnType(), Instruction::Call, Name) { +//===----------------------------------------------------------------------===// +// CallInst Implementation +//===----------------------------------------------------------------------===// +CallInst::CallInst(Value *Func, const std::vector ¶ms, + const std::string &Name) + : Instruction(cast(cast(Func->getType()) + ->getElementType())->getReturnType(), + Instruction::Call, Name) { Operands.reserve(1+params.size()); - Operands.push_back(Use(M, this)); + Operands.push_back(Use(Func, this)); + + const FunctionType *MTy = + cast(cast(Func->getType())->getElementType()); - const MethodType::ParamTypes &PL = M->getType()->getParamTypes(); + const FunctionType::ParamTypes &PL = MTy->getParamTypes(); assert((params.size() == PL.size()) || - (M->getType()->isVarArg() && params.size() > PL.size()) && + (MTy->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)); } @@ -33,3 +39,37 @@ CallInst::CallInst(const CallInst &CI) Operands.push_back(Use(CI.Operands[i], this)); } +//===----------------------------------------------------------------------===// +// InvokeInst Implementation +//===----------------------------------------------------------------------===// + +InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal, + BasicBlock *IfException, + const std::vector ¶ms, + const std::string &Name) + : TerminatorInst(cast(cast(Func->getType()) + ->getElementType())->getReturnType(), + Instruction::Invoke, Name) { + Operands.reserve(3+params.size()); + Operands.push_back(Use(Func, this)); + Operands.push_back(Use((Value*)IfNormal, this)); + Operands.push_back(Use((Value*)IfException, this)); + const FunctionType *MTy = + cast(cast(Func->getType())->getElementType()); + + const FunctionType::ParamTypes &PL = MTy->getParamTypes(); + 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)); +} +