Searched defs:CatchParam (Results 1 - 3 of 3) sorted by relevance
/external/clang/lib/CodeGen/ |
H A D | ItaniumCXXABI.cpp | 3563 const VarDecl &CatchParam, 3570 CGF.CGM.getContext().getCanonicalType(CatchParam.getType()); 3694 const Expr *copyExpr = CatchParam.getInit(); 3716 CGF.MakeAddrLValue(adjustedExn, CatchParam.getType())); 3765 VarDecl *CatchParam = S->getExceptionDecl(); local 3766 if (!CatchParam) { 3773 CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam); 3774 InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF), S->getLocStart()); 3562 InitCatchParam(CodeGenFunction &CGF, const VarDecl &CatchParam, Address ParamAddr, SourceLocation Loc) argument
|
H A D | MicrosoftCXXABI.cpp | 895 VarDecl *CatchParam = S->getExceptionDecl(); local 903 if (!CatchParam || !CatchParam->getDeclName()) { 908 CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam);
|
H A D | CGObjCMac.cpp | 4125 const VarDecl *CatchParam = CatchStmt->getCatchParamDecl(); local 4129 if (!CatchParam) { 4132 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>(); 4146 if (CatchParam) { 4147 CGF.EmitAutoVarDecl(*CatchParam); 4151 EmitInitOfCatchParam(CGF, Caught, CatchParam); 4191 CGF.EmitAutoVarDecl(*CatchParam); 4197 CGF.ConvertType(CatchParam->getType())); 4198 EmitInitOfCatchParam(CGF, Tmp, CatchParam);
|
Completed in 61 milliseconds