}
if (FuncAttrs)
PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
-
}
void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
break;
}
}
-
- llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
+ llvm::BasicBlock *InvokeDest = getInvokeDest();
CodeGen::AttributeListType AttributeList;
CGM.ConstructAttributeList(CallInfo, TargetDecl, AttributeList);
- CI->setAttributes(llvm::AttrListPtr::get(AttributeList.begin(),
- AttributeList.size()));
+ llvm::AttrListPtr Attrs = llvm::AttrListPtr::get(AttributeList.begin(),
+ AttributeList.end());
- if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
- CI->setCallingConv(F->getCallingConv());
+ llvm::Instruction *CI;
+ if (!InvokeDest || Attrs.getFnAttributes() & (llvm::Attribute::NoUnwind ||
+ llvm::Attribute::NoReturn)) {
+ llvm::CallInst *CallInstr =
+ Builder.CreateCall(Callee, &Args[0], &Args[0]+Args.size());
+ CI = CallInstr;
+
+ CallInstr->setAttributes(Attrs);
+ if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
+ CallInstr->setCallingConv(F->getCallingConv());
+
+ // If the call doesn't return, finish the basic block and clear the
+ // insertion point; this allows the rest of IRgen to discard
+ // unreachable code.
+ if (CallInstr->doesNotReturn()) {
+ Builder.CreateUnreachable();
+ Builder.ClearInsertionPoint();
+
+ // Return a reasonable RValue.
+ return GetUndefRValue(RetTy);
+ }
+ } else {
+ llvm::BasicBlock *Cont = createBasicBlock("invoke.cont");
+ llvm::InvokeInst *InvokeInstr =
+ Builder.CreateInvoke(Callee, Cont, InvokeDest,
+ &Args[0], &Args[0]+Args.size());
+ CI = InvokeInstr;
- // If the call doesn't return, finish the basic block and clear the
- // insertion point; this allows the rest of IRgen to discard
- // unreachable code.
- if (CI->doesNotReturn()) {
- Builder.CreateUnreachable();
- Builder.ClearInsertionPoint();
+ InvokeInstr->setAttributes(Attrs);
+ if (const llvm::Function *F = dyn_cast<llvm::Function>(Callee))
+ InvokeInstr->setCallingConv(F->getCallingConv());
- // Return a reasonable RValue.
- return GetUndefRValue(RetTy);
+ EmitBlock(Cont);
}
if (CI->getType() != llvm::Type::VoidTy)
/// statement range in current switch instruction.
llvm::BasicBlock *CaseRangeBlock;
+ /// InvokeDest - This is the nearest exception target for calls
+ /// which can unwind, when exceptions are being used.
+ llvm::BasicBlock *InvokeDest;
+
// VLASizeMap - This keeps track of the associated size for each VLA type.
// FIXME: Maybe this could be a stack of maps that is pushed/popped as we
// enter/leave scopes.
ASTContext &getContext() const;
CGDebugInfo *getDebugInfo() { return DebugInfo; }
+ llvm::BasicBlock *getInvokeDest() { return InvokeDest; }
+ void setInvokeDest(llvm::BasicBlock *B) { InvokeDest = B; }
+
+ //===--------------------------------------------------------------------===//
+ // Objective-C
+ //===--------------------------------------------------------------------===//
+
void GenerateObjCMethod(const ObjCMethodDecl *OMD);
void StartObjCMethod(const ObjCMethodDecl *MD,