Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaStmt.cpp4177 QualType ThrowType = Throw->getType(); in BuildObjCAtThrowStmt() local
4179 if (!ThrowType->isDependentType() && in BuildObjCAtThrowStmt()
4180 !ThrowType->isObjCObjectPointerType()) { in BuildObjCAtThrowStmt()
4181 const PointerType *PT = ThrowType->getAs<PointerType>(); in BuildObjCAtThrowStmt()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGException.cpp444 QualType ThrowType = SubExpr->getType(); in EmitCXXThrowExpr() local
445 if (ThrowType->isObjCObjectPointerType()) { in EmitCXXThrowExpr()
DItaniumCXXABI.cpp1325 QualType ThrowType = E->getSubExpr()->getType(); in emitThrow() local
1328 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity(); in emitThrow()
1338 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, in emitThrow()
1344 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) { in emitThrow()
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()