Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGException.cpp406 QualType ThrowType = SubExpr->getType(); in EmitCXXThrowExpr() local
407 if (ThrowType->isObjCObjectPointerType()) { in EmitCXXThrowExpr()
DItaniumCXXABI.cpp1073 QualType ThrowType = E->getSubExpr()->getType(); in emitThrow() local
1076 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity(); in emitThrow()
1086 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, in emitThrow()
1092 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) { in emitThrow()
DMicrosoftCXXABI.cpp4174 QualType ThrowType = SubExpr->getType(); in emitThrow() local
4177 Address AI = CGF.CreateMemTemp(ThrowType); in emitThrow()
4178 CGF.EmitAnyExprToMem(SubExpr, AI, ThrowType.getQualifiers(), in emitThrow()
4183 llvm::GlobalVariable *TI = getThrowInfo(ThrowType); in emitThrow()
/external/clang/lib/Sema/
DSemaStmt.cpp3444 QualType ThrowType = Throw->getType(); in BuildObjCAtThrowStmt() local
3446 if (!ThrowType->isDependentType() && in BuildObjCAtThrowStmt()
3447 !ThrowType->isObjCObjectPointerType()) { in BuildObjCAtThrowStmt()
3448 const PointerType *PT = ThrowType->getAs<PointerType>(); in BuildObjCAtThrowStmt()