diff options
Diffstat (limited to 'lib/VMCore/Instructions.cpp')
-rw-r--r-- | lib/VMCore/Instructions.cpp | 3540 |
1 files changed, 0 insertions, 3540 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp deleted file mode 100644 index dffd13c0ee..0000000000 --- a/lib/VMCore/Instructions.cpp +++ /dev/null @@ -1,3540 +0,0 @@ -//===-- Instructions.cpp - Implement the LLVM instructions ----------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements all of the non-inline methods for the LLVM instruction -// classes. -// -//===----------------------------------------------------------------------===// - -#include "llvm/Instructions.h" -#include "LLVMContextImpl.h" -#include "llvm/Constants.h" -#include "llvm/DataLayout.h" -#include "llvm/DerivedTypes.h" -#include "llvm/Function.h" -#include "llvm/Module.h" -#include "llvm/Operator.h" -#include "llvm/Support/CallSite.h" -#include "llvm/Support/ConstantRange.h" -#include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/MathExtras.h" -using namespace llvm; - -//===----------------------------------------------------------------------===// -// CallSite Class -//===----------------------------------------------------------------------===// - -User::op_iterator CallSite::getCallee() const { - Instruction *II(getInstruction()); - return isCall() - ? cast<CallInst>(II)->op_end() - 1 // Skip Callee - : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee -} - -//===----------------------------------------------------------------------===// -// TerminatorInst Class -//===----------------------------------------------------------------------===// - -// Out of line virtual method, so the vtable, etc has a home. -TerminatorInst::~TerminatorInst() { -} - -//===----------------------------------------------------------------------===// -// UnaryInstruction Class -//===----------------------------------------------------------------------===// - -// Out of line virtual method, so the vtable, etc has a home. -UnaryInstruction::~UnaryInstruction() { -} - -//===----------------------------------------------------------------------===// -// SelectInst Class -//===----------------------------------------------------------------------===// - -/// areInvalidOperands - Return a string if the specified operands are invalid -/// for a select operation, otherwise return null. -const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) { - if (Op1->getType() != Op2->getType()) - return "both values to select must have same type"; - - if (VectorType *VT = dyn_cast<VectorType>(Op0->getType())) { - // Vector select. - if (VT->getElementType() != Type::getInt1Ty(Op0->getContext())) - return "vector select condition element type must be i1"; - VectorType *ET = dyn_cast<VectorType>(Op1->getType()); - if (ET == 0) - return "selected values for vector select must be vectors"; - if (ET->getNumElements() != VT->getNumElements()) - return "vector select requires selected vectors to have " - "the same vector length as select condition"; - } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) { - return "select condition must be i1 or <n x i1>"; - } - return 0; -} - - -//===----------------------------------------------------------------------===// -// PHINode Class -//===----------------------------------------------------------------------===// - -PHINode::PHINode(const PHINode &PN) - : Instruction(PN.getType(), Instruction::PHI, - allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()), - ReservedSpace(PN.getNumOperands()) { - std::copy(PN.op_begin(), PN.op_end(), op_begin()); - std::copy(PN.block_begin(), PN.block_end(), block_begin()); - SubclassOptionalData = PN.SubclassOptionalData; -} - -PHINode::~PHINode() { - dropHungoffUses(); -} - -Use *PHINode::allocHungoffUses(unsigned N) const { - // Allocate the array of Uses of the incoming values, followed by a pointer - // (with bottom bit set) to the User, followed by the array of pointers to - // the incoming basic blocks. - size_t size = N * sizeof(Use) + sizeof(Use::UserRef) - + N * sizeof(BasicBlock*); - Use *Begin = static_cast<Use*>(::operator new(size)); - Use *End = Begin + N; - (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1); - return Use::initTags(Begin, End); -} - -// removeIncomingValue - Remove an incoming value. This is useful if a -// predecessor basic block is deleted. -Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { - Value *Removed = getIncomingValue(Idx); - - // Move everything after this operand down. - // - // FIXME: we could just swap with the end of the list, then erase. However, - // clients might not expect this to happen. The code as it is thrashes the - // use/def lists, which is kinda lame. - std::copy(op_begin() + Idx + 1, op_end(), op_begin() + Idx); - std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx); - - // Nuke the last value. - Op<-1>().set(0); - --NumOperands; - - // If the PHI node is dead, because it has zero entries, nuke it now. - if (getNumOperands() == 0 && DeletePHIIfEmpty) { - // If anyone is using this PHI, make them use a dummy value instead... - replaceAllUsesWith(UndefValue::get(getType())); - eraseFromParent(); - } - return Removed; -} - -/// growOperands - grow operands - This grows the operand list in response -/// to a push_back style of operation. This grows the number of ops by 1.5 -/// times. -/// -void PHINode::growOperands() { - unsigned e = getNumOperands(); - unsigned NumOps = e + e / 2; - if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common. - - Use *OldOps = op_begin(); - BasicBlock **OldBlocks = block_begin(); - - ReservedSpace = NumOps; - OperandList = allocHungoffUses(ReservedSpace); - - std::copy(OldOps, OldOps + e, op_begin()); - std::copy(OldBlocks, OldBlocks + e, block_begin()); - - Use::zap(OldOps, OldOps + e, true); -} - -/// hasConstantValue - If the specified PHI node always merges together the same -/// value, return the value, otherwise return null. -Value *PHINode::hasConstantValue() const { - // Exploit the fact that phi nodes always have at least one entry. - Value *ConstantValue = getIncomingValue(0); - for (unsigned i = 1, e = getNumIncomingValues(); i != e; ++i) - if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) { - if (ConstantValue != this) - return 0; // Incoming values not all the same. - // The case where the first value is this PHI. - ConstantValue = getIncomingValue(i); - } - if (ConstantValue == this) - return UndefValue::get(getType()); - return ConstantValue; -} - -//===----------------------------------------------------------------------===// -// LandingPadInst Implementation -//===----------------------------------------------------------------------===// - -LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn, - unsigned NumReservedValues, const Twine &NameStr, - Instruction *InsertBefore) - : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) { - init(PersonalityFn, 1 + NumReservedValues, NameStr); -} - -LandingPadInst::LandingPadInst(Type *RetTy, Value *PersonalityFn, - unsigned NumReservedValues, const Twine &NameStr, - BasicBlock *InsertAtEnd) - : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertAtEnd) { - init(PersonalityFn, 1 + NumReservedValues, NameStr); -} - -LandingPadInst::LandingPadInst(const LandingPadInst &LP) - : Instruction(LP.getType(), Instruction::LandingPad, - allocHungoffUses(LP.getNumOperands()), LP.getNumOperands()), - ReservedSpace(LP.getNumOperands()) { - Use *OL = OperandList, *InOL = LP.OperandList; - for (unsigned I = 0, E = ReservedSpace; I != E; ++I) - OL[I] = InOL[I]; - - setCleanup(LP.isCleanup()); -} - -LandingPadInst::~LandingPadInst() { - dropHungoffUses(); -} - -LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn, - unsigned NumReservedClauses, - const Twine &NameStr, - Instruction *InsertBefore) { - return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr, - InsertBefore); -} - -LandingPadInst *LandingPadInst::Create(Type *RetTy, Value *PersonalityFn, - unsigned NumReservedClauses, - const Twine &NameStr, - BasicBlock *InsertAtEnd) { - return new LandingPadInst(RetTy, PersonalityFn, NumReservedClauses, NameStr, - InsertAtEnd); -} - -void LandingPadInst::init(Value *PersFn, unsigned NumReservedValues, - const Twine &NameStr) { - ReservedSpace = NumReservedValues; - NumOperands = 1; - OperandList = allocHungoffUses(ReservedSpace); - OperandList[0] = PersFn; - setName(NameStr); - setCleanup(false); -} - -/// growOperands - grow operands - This grows the operand list in response to a -/// push_back style of operation. This grows the number of ops by 2 times. -void LandingPadInst::growOperands(unsigned Size) { - unsigned e = getNumOperands(); - if (ReservedSpace >= e + Size) return; - ReservedSpace = (e + Size / 2) * 2; - - Use *NewOps = allocHungoffUses(ReservedSpace); - Use *OldOps = OperandList; - for (unsigned i = 0; i != e; ++i) - NewOps[i] = OldOps[i]; - - OperandList = NewOps; - Use::zap(OldOps, OldOps + e, true); -} - -void LandingPadInst::addClause(Value *Val) { - unsigned OpNo = getNumOperands(); - growOperands(1); - assert(OpNo < ReservedSpace && "Growing didn't work!"); - ++NumOperands; - OperandList[OpNo] = Val; -} - -//===----------------------------------------------------------------------===// -// CallInst Implementation -//===----------------------------------------------------------------------===// - -CallInst::~CallInst() { -} - -void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) { - assert(NumOperands == Args.size() + 1 && "NumOperands not set up?"); - Op<-1>() = Func; - -#ifndef NDEBUG - FunctionType *FTy = - cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); - - assert((Args.size() == FTy->getNumParams() || - (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && - "Calling a function with bad signature!"); - - for (unsigned i = 0; i != Args.size(); ++i) - assert((i >= FTy->getNumParams() || - FTy->getParamType(i) == Args[i]->getType()) && - "Calling a function with a bad signature!"); -#endif - - std::copy(Args.begin(), Args.end(), op_begin()); - setName(NameStr); -} - -void CallInst::init(Value *Func, const Twine &NameStr) { - assert(NumOperands == 1 && "NumOperands not set up?"); - Op<-1>() = Func; - -#ifndef NDEBUG - FunctionType *FTy = - cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType()); - - assert(FTy->getNumParams() == 0 && "Calling a function with bad signature"); -#endif - - setName(NameStr); -} - -CallInst::CallInst(Value *Func, const Twine &Name, - Instruction *InsertBefore) - : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) - ->getElementType())->getReturnType(), - Instruction::Call, - OperandTraits<CallInst>::op_end(this) - 1, - 1, InsertBefore) { - init(Func, Name); -} - -CallInst::CallInst(Value *Func, const Twine &Name, - BasicBlock *InsertAtEnd) - : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType()) - ->getElementType())->getReturnType(), - Instruction::Call, - OperandTraits<CallInst>::op_end(this) - 1, - 1, InsertAtEnd) { - init(Func, Name); -} - -CallInst::CallInst(const CallInst &CI) - : Instruction(CI.getType(), Instruction::Call, - OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(), - CI.getNumOperands()) { - setAttributes(CI.getAttributes()); - setTailCall(CI.isTailCall()); - setCallingConv(CI.getCallingConv()); - - std::copy(CI.op_begin(), CI.op_end(), op_begin()); - SubclassOptionalData = CI.SubclassOptionalData; -} - -void CallInst::addAttribute(unsigned i, Attribute attr) { - AttributeSet PAL = getAttributes(); - PAL = PAL.addAttr(getContext(), i, attr); - setAttributes(PAL); -} - -void CallInst::removeAttribute(unsigned i, Attribute attr) { - AttributeSet PAL = getAttributes(); - PAL = PAL.removeAttr(getContext(), i, attr); - setAttributes(PAL); -} - -bool CallInst::hasFnAttr(Attribute::AttrKind A) const { - if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A)) - return true; - if (const Function *F = getCalledFunction()) - return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A); - return false; -} - -bool CallInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const { - if (AttributeList.hasAttribute(i, A)) - return true; - if (const Function *F = getCalledFunction()) - return F->getAttributes().hasAttribute(i, A); - return false; -} - -/// IsConstantOne - Return true only if val is constant int 1 -static bool IsConstantOne(Value *val) { - assert(val && "IsConstantOne does not work with NULL val"); - return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne(); -} - -static Instruction *createMalloc(Instruction *InsertBefore, - BasicBlock *InsertAtEnd, Type *IntPtrTy, - Type *AllocTy, Value *AllocSize, - Value *ArraySize, Function *MallocF, - const Twine &Name) { - assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && - "createMalloc needs either InsertBefore or InsertAtEnd"); - - // malloc(type) becomes: - // bitcast (i8* malloc(typeSize)) to type* - // malloc(type, arraySize) becomes: - // bitcast (i8 *malloc(typeSize*arraySize)) to type* - if (!ArraySize) - ArraySize = ConstantInt::get(IntPtrTy, 1); - else if (ArraySize->getType() != IntPtrTy) { - if (InsertBefore) - ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, - "", InsertBefore); - else - ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, - "", InsertAtEnd); - } - - if (!IsConstantOne(ArraySize)) { - if (IsConstantOne(AllocSize)) { - AllocSize = ArraySize; // Operand * 1 = Operand - } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) { - Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy, - false /*ZExt*/); - // Malloc arg is constant product of type size and array size - AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize)); - } else { - // Multiply type size by the array size... - if (InsertBefore) - AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize, - "mallocsize", InsertBefore); - else - AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize, - "mallocsize", InsertAtEnd); - } - } - - assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size"); - // Create the call to Malloc. - BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd; - Module* M = BB->getParent()->getParent(); - Type *BPTy = Type::getInt8PtrTy(BB->getContext()); - Value *MallocFunc = MallocF; - if (!MallocFunc) - // prototype malloc as "void *malloc(size_t)" - MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL); - PointerType *AllocPtrType = PointerType::getUnqual(AllocTy); - CallInst *MCall = NULL; - Instruction *Result = NULL; - if (InsertBefore) { - MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore); - Result = MCall; - if (Result->getType() != AllocPtrType) - // Create a cast instruction to convert to the right type... - Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); - } else { - MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall"); - Result = MCall; - if (Result->getType() != AllocPtrType) { - InsertAtEnd->getInstList().push_back(MCall); - // Create a cast instruction to convert to the right type... - Result = new BitCastInst(MCall, AllocPtrType, Name); - } - } - MCall->setTailCall(); - if (Function *F = dyn_cast<Function>(MallocFunc)) { - MCall->setCallingConv(F->getCallingConv()); - if (!F->doesNotAlias(0)) F->setDoesNotAlias(0); - } - assert(!MCall->getType()->isVoidTy() && "Malloc has void return type"); - - return Result; -} - -/// CreateMalloc - Generate the IR for a call to malloc: -/// 1. Compute the malloc call's argument as the specified type's size, -/// possibly multiplied by the array size if the array size is not -/// constant 1. -/// 2. Call malloc with that argument. -/// 3. Bitcast the result of the malloc call to the specified type. -Instruction *CallInst::CreateMalloc(Instruction *InsertBefore, - Type *IntPtrTy, Type *AllocTy, - Value *AllocSize, Value *ArraySize, - Function * MallocF, - const Twine &Name) { - return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize, - ArraySize, MallocF, Name); -} - -/// CreateMalloc - Generate the IR for a call to malloc: -/// 1. Compute the malloc call's argument as the specified type's size, -/// possibly multiplied by the array size if the array size is not -/// constant 1. -/// 2. Call malloc with that argument. -/// 3. Bitcast the result of the malloc call to the specified type. -/// Note: This function does not add the bitcast to the basic block, that is the -/// responsibility of the caller. -Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd, - Type *IntPtrTy, Type *AllocTy, - Value *AllocSize, Value *ArraySize, - Function *MallocF, const Twine &Name) { - return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize, - ArraySize, MallocF, Name); -} - -static Instruction* createFree(Value* Source, Instruction *InsertBefore, - BasicBlock *InsertAtEnd) { - assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && - "createFree needs either InsertBefore or InsertAtEnd"); - assert(Source->getType()->isPointerTy() && - "Can not free something of nonpointer type!"); - - BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd; - Module* M = BB->getParent()->getParent(); - - Type *VoidTy = Type::getVoidTy(M->getContext()); - Type *IntPtrTy = Type::getInt8PtrTy(M->getContext()); - // prototype free as "void free(void*)" - Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL); - CallInst* Result = NULL; - Value *PtrCast = Source; - if (InsertBefore) { - if (Source->getType() != IntPtrTy) - PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore); - Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore); - } else { - if (Source->getType() != IntPtrTy) - PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd); - Result = CallInst::Create(FreeFunc, PtrCast, ""); - } - Result->setTailCall(); - if (Function *F = dyn_cast<Function>(FreeFunc)) - Result->setCallingConv(F->getCallingConv()); - - return Result; -} - -/// CreateFree - Generate the IR for a call to the builtin free function. -Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) { - return createFree(Source, InsertBefore, NULL); -} - -/// CreateFree - Generate the IR for a call to the builtin free function. -/// Note: This function does not add the call to the basic block, that is the -/// responsibility of the caller. -Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) { - Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd); - assert(FreeCall && "CreateFree did not create a CallInst"); - return FreeCall; -} - -//===----------------------------------------------------------------------===// -// InvokeInst Implementation -//===----------------------------------------------------------------------===// - -void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException, - ArrayRef<Value *> Args, const Twine &NameStr) { - assert(NumOperands == 3 + Args.size() && "NumOperands not set up?"); - Op<-3>() = Fn; - Op<-2>() = IfNormal; - Op<-1>() = IfException; - -#ifndef NDEBUG - FunctionType *FTy = - cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()); - - assert(((Args.size() == FTy->getNumParams()) || - (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && - "Invoking a function with bad signature"); - - for (unsigned i = 0, e = Args.size(); i != e; i++) - assert((i >= FTy->getNumParams() || - FTy->getParamType(i) == Args[i]->getType()) && - "Invoking a function with a bad signature!"); -#endif - - std::copy(Args.begin(), Args.end(), op_begin()); - setName(NameStr); -} - -InvokeInst::InvokeInst(const InvokeInst &II) - : TerminatorInst(II.getType(), Instruction::Invoke, - OperandTraits<InvokeInst>::op_end(this) - - II.getNumOperands(), - II.getNumOperands()) { - setAttributes(II.getAttributes()); - setCallingConv(II.getCallingConv()); - std::copy(II.op_begin(), II.op_end(), op_begin()); - SubclassOptionalData = II.SubclassOptionalData; -} - -BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const { - return getSuccessor(idx); -} -unsigned InvokeInst::getNumSuccessorsV() const { - return getNumSuccessors(); -} -void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) { - return setSuccessor(idx, B); -} - -bool InvokeInst::hasFnAttr(Attribute::AttrKind A) const { - if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A)) - return true; - if (const Function *F = getCalledFunction()) - return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A); - return false; -} - -bool InvokeInst::paramHasAttr(unsigned i, Attribute::AttrKind A) const { - if (AttributeList.hasAttribute(i, A)) - return true; - if (const Function *F = getCalledFunction()) - return F->getAttributes().hasAttribute(i, A); - return false; -} - -void InvokeInst::addAttribute(unsigned i, Attribute attr) { - AttributeSet PAL = getAttributes(); - PAL = PAL.addAttr(getContext(), i, attr); - setAttributes(PAL); -} - -void InvokeInst::removeAttribute(unsigned i, Attribute attr) { - AttributeSet PAL = getAttributes(); - PAL = PAL.removeAttr(getContext(), i, attr); - setAttributes(PAL); -} - -LandingPadInst *InvokeInst::getLandingPadInst() const { - return cast<LandingPadInst>(getUnwindDest()->getFirstNonPHI()); -} - -//===----------------------------------------------------------------------===// -// ReturnInst Implementation -//===----------------------------------------------------------------------===// - -ReturnInst::ReturnInst(const ReturnInst &RI) - : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret, - OperandTraits<ReturnInst>::op_end(this) - - RI.getNumOperands(), - RI.getNumOperands()) { - if (RI.getNumOperands()) - Op<0>() = RI.Op<0>(); - SubclassOptionalData = RI.SubclassOptionalData; -} - -ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore) - : TerminatorInst(Type::getVoidTy(C), Instruction::Ret, - OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal, - InsertBefore) { - if (retVal) - Op<0>() = retVal; -} -ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(C), Instruction::Ret, - OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal, - InsertAtEnd) { - if (retVal) - Op<0>() = retVal; -} -ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret, - OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) { -} - -unsigned ReturnInst::getNumSuccessorsV() const { - return getNumSuccessors(); -} - -/// Out-of-line ReturnInst method, put here so the C++ compiler can choose to -/// emit the vtable for the class in this translation unit. -void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { - llvm_unreachable("ReturnInst has no successors!"); -} - -BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const { - llvm_unreachable("ReturnInst has no successors!"); -} - -ReturnInst::~ReturnInst() { -} - -//===----------------------------------------------------------------------===// -// ResumeInst Implementation -//===----------------------------------------------------------------------===// - -ResumeInst::ResumeInst(const ResumeInst &RI) - : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume, - OperandTraits<ResumeInst>::op_begin(this), 1) { - Op<0>() = RI.Op<0>(); -} - -ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) - : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, - OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) { - Op<0>() = Exn; -} - -ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume, - OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) { - Op<0>() = Exn; -} - -unsigned ResumeInst::getNumSuccessorsV() const { - return getNumSuccessors(); -} - -void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { - llvm_unreachable("ResumeInst has no successors!"); -} - -BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const { - llvm_unreachable("ResumeInst has no successors!"); -} - -//===----------------------------------------------------------------------===// -// UnreachableInst Implementation -//===----------------------------------------------------------------------===// - -UnreachableInst::UnreachableInst(LLVMContext &Context, - Instruction *InsertBefore) - : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable, - 0, 0, InsertBefore) { -} -UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable, - 0, 0, InsertAtEnd) { -} - -unsigned UnreachableInst::getNumSuccessorsV() const { - return getNumSuccessors(); -} - -void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) { - llvm_unreachable("UnreachableInst has no successors!"); -} - -BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const { - llvm_unreachable("UnreachableInst has no successors!"); -} - -//===----------------------------------------------------------------------===// -// BranchInst Implementation -//===----------------------------------------------------------------------===// - -void BranchInst::AssertOK() { - if (isConditional()) - assert(getCondition()->getType()->isIntegerTy(1) && - "May only branch on boolean predicates!"); -} - -BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) - : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, - OperandTraits<BranchInst>::op_end(this) - 1, - 1, InsertBefore) { - assert(IfTrue != 0 && "Branch destination may not be null!"); - Op<-1>() = IfTrue; -} -BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, - Instruction *InsertBefore) - : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, - OperandTraits<BranchInst>::op_end(this) - 3, - 3, InsertBefore) { - Op<-1>() = IfTrue; - Op<-2>() = IfFalse; - Op<-3>() = Cond; -#ifndef NDEBUG - AssertOK(); -#endif -} - -BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, - OperandTraits<BranchInst>::op_end(this) - 1, - 1, InsertAtEnd) { - assert(IfTrue != 0 && "Branch destination may not be null!"); - Op<-1>() = IfTrue; -} - -BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, - BasicBlock *InsertAtEnd) - : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br, - OperandTraits<BranchInst>::op_end(this) - 3, - 3, InsertAtEnd) { - Op<-1>() = IfTrue; - Op<-2>() = IfFalse; - Op<-3>() = Cond; -#ifndef NDEBUG - AssertOK(); -#endif -} - - -BranchInst::BranchInst(const BranchInst &BI) : - TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br, - OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(), - BI.getNumOperands()) { - Op<-1>() = BI.Op<-1>(); - if (BI.getNumOperands() != 1) { - assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!"); - Op<-3>() = BI.Op<-3>(); - Op<-2>() = BI.Op<-2>(); - } - SubclassOptionalData = BI.SubclassOptionalData; -} - -void BranchInst::swapSuccessors() { - assert(isConditional() && - "Cannot swap successors of an unconditional branch"); - Op<-1>().swap(Op<-2>()); - - // Update profile metadata if present and it matches our structural - // expectations. - MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); - if (!ProfileData || ProfileData->getNumOperands() != 3) - return; - - // The first operand is the name. Fetch them backwards and build a new one. - Value *Ops[] = { - ProfileData->getOperand(0), - ProfileData->getOperand(2), - ProfileData->getOperand(1) - }; - setMetadata(LLVMContext::MD_prof, - MDNode::get(ProfileData->getContext(), Ops)); -} - -BasicBlock *BranchInst::getSuccessorV(unsigned idx) const { - return getSuccessor(idx); -} -unsigned BranchInst::getNumSuccessorsV() const { - return getNumSuccessors(); -} -void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) { - setSuccessor(idx, B); -} - - -//===----------------------------------------------------------------------===// -// AllocaInst Implementation -//===----------------------------------------------------------------------===// - -static Value *getAISize(LLVMContext &Context, Value *Amt) { - if (!Amt) - Amt = ConstantInt::get(Type::getInt32Ty(Context), 1); - else { - assert(!isa<BasicBlock>(Amt) && - "Passed basic block into allocation size parameter! Use other ctor"); - assert(Amt->getType()->isIntegerTy() && - "Allocation array size is not an integer!"); - } - return Amt; -} - -AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, - const Twine &Name, Instruction *InsertBefore) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), ArraySize), InsertBefore) { - setAlignment(0); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, - const Twine &Name, BasicBlock *InsertAtEnd) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), ArraySize), InsertAtEnd) { - setAlignment(0); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -AllocaInst::AllocaInst(Type *Ty, const Twine &Name, - Instruction *InsertBefore) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), 0), InsertBefore) { - setAlignment(0); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -AllocaInst::AllocaInst(Type *Ty, const Twine &Name, - BasicBlock *InsertAtEnd) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), 0), InsertAtEnd) { - setAlignment(0); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, - const Twine &Name, Instruction *InsertBefore) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), ArraySize), InsertBefore) { - setAlignment(Align); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -AllocaInst::AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, - const Twine &Name, BasicBlock *InsertAtEnd) - : UnaryInstruction(PointerType::getUnqual(Ty), Alloca, - getAISize(Ty->getContext(), ArraySize), InsertAtEnd) { - setAlignment(Align); - assert(!Ty->isVoidTy() && "Cannot allocate void!"); - setName(Name); -} - -// Out of line virtual method, so the vtable, etc has a home. -AllocaInst::~AllocaInst() { -} - -void AllocaInst::setAlignment(unsigned Align) { - assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!"); - assert(Align <= MaximumAlignment && - "Alignment is greater than MaximumAlignment!"); - setInstructionSubclassData(Log2_32(Align) + 1); - assert(getAlignment() == Align && "Alignment representation error!"); -} - -bool AllocaInst::isArrayAllocation() const { - if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0))) - return !CI->isOne(); - return true; -} - -Type *AllocaInst::getAllocatedType() const { - return getType()->getElementType(); -} - -/// isStaticAlloca - Return true if this alloca is in the entry block of the -/// function and is a constant size. If so, the code generator will fold it -/// into the prolog/epilog code, so it is basically free. -bool AllocaInst::isStaticAlloca() const { - // Must be constant size. - if (!isa<ConstantInt>(getArraySize())) return false; - - // Must be in the entry block. - const BasicBlock *Parent = getParent(); - return Parent == &Parent->getParent()->front(); -} - -//===----------------------------------------------------------------------===// -// LoadInst Implementation -//===----------------------------------------------------------------------===// - -void LoadInst::AssertOK() { - assert(getOperand(0)->getType()->isPointerTy() && - "Ptr must have pointer type."); - assert(!(isAtomic() && getAlignment() == 0) && - "Alignment required for atomic load"); -} - -LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef) - : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), - Load, Ptr, InsertBef) { - setVolatile(false); - setAlignment(0); - setAtomic(NotAtomic); - AssertOK(); - setName(Name); -} - -LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE) - : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), - Load, Ptr, InsertAE) { - setVolatile(false); - setAlignment(0); - setAtomic(NotAtomic); - AssertOK(); - setName(Name); -} - -LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, - Instruction *InsertBef) - : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(), |