Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp4241 QualType ThrowType = Throw->getType(); in BuildObjCAtThrowStmt() local
4243 if (!ThrowType->isDependentType() && in BuildObjCAtThrowStmt()
4244 !ThrowType->isObjCObjectPointerType()) { in BuildObjCAtThrowStmt()
4245 const PointerType *PT = ThrowType->getAs<PointerType>(); in BuildObjCAtThrowStmt()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGException.cpp444 QualType ThrowType = SubExpr->getType(); in EmitCXXThrowExpr() local
445 if (ThrowType->isObjCObjectPointerType()) { in EmitCXXThrowExpr()
H A DItaniumCXXABI.cpp1279 QualType ThrowType = E->getSubExpr()->getType(); in emitThrow() local
1282 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity(); in emitThrow()
1293 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, in emitThrow()
1299 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) { in emitThrow()
H A DMicrosoftCXXABI.cpp4458 QualType ThrowType = SubExpr->getType(); in emitThrow() local
4461 Address AI = CGF.CreateMemTemp(ThrowType); in emitThrow()
4462 CGF.EmitAnyExprToMem(SubExpr, AI, ThrowType.getQualifiers(), in emitThrow()
4467 llvm::GlobalVariable *TI = getThrowInfo(ThrowType); in emitThrow()