Home
last modified time | relevance | path

Searched refs:ThrowType (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp4229 QualType ThrowType = Throw->getType(); in BuildObjCAtThrowStmt() local
4231 if (!ThrowType->isDependentType() && in BuildObjCAtThrowStmt()
4232 !ThrowType->isObjCObjectPointerType()) { in BuildObjCAtThrowStmt()
4233 const PointerType *PT = ThrowType->getAs<PointerType>(); in BuildObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1316 QualType ThrowType = E->getSubExpr()->getType(); in emitThrow() local
1319 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity(); in emitThrow()
1329 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, in emitThrow()
1335 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) { in emitThrow()
H A DCGException.cpp444 QualType ThrowType = SubExpr->getType(); in EmitCXXThrowExpr() local
445 if (ThrowType->isObjCObjectPointerType()) { in EmitCXXThrowExpr()
H A DMicrosoftCXXABI.cpp4351 QualType ThrowType = SubExpr->getType(); in emitThrow() local
4354 Address AI = CGF.CreateMemTemp(ThrowType); in emitThrow()
4355 CGF.EmitAnyExprToMem(SubExpr, AI, ThrowType.getQualifiers(), in emitThrow()
4360 llvm::GlobalVariable *TI = getThrowInfo(ThrowType); in emitThrow()