diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-11-01 07:22:08 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-11-01 07:22:08 +0000 |
| commit | 2d8b294b3c49628b22d0607ea98c42964f597415 (patch) | |
| tree | 329610eae7761df0fbcb8045805f4369d3f97fd7 /clang/lib/CodeGen | |
| parent | c89e75e93e24613fe95a72df4007dff5b97a1beb (diff) | |
| download | bcm5719-llvm-2d8b294b3c49628b22d0607ea98c42964f597415.tar.gz bcm5719-llvm-2d8b294b3c49628b22d0607ea98c42964f597415.zip | |
-fcatch-undefined-behavior: Start checking loads and stores for null pointers.
We want the diagnostic, and if the load is optimized away, we still want to
trap it. Stop checking non-default address spaces; that doesn't work in
general.
llvm-svn: 167219
Diffstat (limited to 'clang/lib/CodeGen')
| -rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index fa0449ec57f..d59a72df872 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -479,15 +479,17 @@ void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, if (!CatchUndefined) return; + // Don't check pointers outside the default address space. The null check + // isn't correct, the object-size check isn't supported by LLVM, and we can't + // communicate the addresses to the runtime handler for the vptr check. + if (Address->getType()->getPointerAddressSpace()) + return; + llvm::Value *Cond = 0; - if (TCK != TCK_Load && TCK != TCK_Store) { - // The glvalue must not be an empty glvalue. Don't bother checking this for - // loads and stores, because we will get a segfault anyway (if the operation - // isn't optimized out). - Cond = Builder.CreateICmpNE( - Address, llvm::Constant::getNullValue(Address->getType())); - } + // The glvalue must not be an empty glvalue. + Cond = Builder.CreateICmpNE( + Address, llvm::Constant::getNullValue(Address->getType())); uint64_t AlignVal = Alignment.getQuantity(); @@ -496,16 +498,14 @@ void CodeGenFunction::EmitTypeCheck(TypeCheckKind TCK, SourceLocation Loc, if (!AlignVal) AlignVal = getContext().getTypeAlignInChars(Ty).getQuantity(); - // This needs to be to the standard address space. - Address = Builder.CreateBitCast(Address, Int8PtrTy); - // The glvalue must refer to a large enough storage region. // FIXME: If -faddress-sanitizer is enabled, insert dynamic instrumentation // to check this. llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::objectsize, IntPtrTy); llvm::Value *Min = Builder.getFalse(); + llvm::Value *CastAddr = Builder.CreateBitCast(Address, Int8PtrTy); llvm::Value *LargeEnough = - Builder.CreateICmpUGE(Builder.CreateCall2(F, Address, Min), + Builder.CreateICmpUGE(Builder.CreateCall2(F, CastAddr, Min), llvm::ConstantInt::get(IntPtrTy, Size)); Cond = Cond ? Builder.CreateAnd(Cond, LargeEnough) : LargeEnough; } |

