diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2011-04-19 23:10:47 +0000 | 
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-19 23:10:47 +0000 | 
| commit | 914bc4106cb7558b907b7b8b82df416f96c56103 (patch) | |
| tree | 1757af42423c713f81cffd3ca34dd70a0405c49b | |
| parent | 2531eb421f45dbe5cae358a39c90273326697ee5 (diff) | |
| download | bcm5719-llvm-914bc4106cb7558b907b7b8b82df416f96c56103.tar.gz bcm5719-llvm-914bc4106cb7558b907b7b8b82df416f96c56103.zip  | |
IRgen/ARM: Fix a think-o in conversion-to-null for member function pointers, we
were computing the conversion as (ptr != 0 && non-virtual), when it should be
(ptr != 0 || is-virtual).
 - Test to follow in LLVM test-suite.
llvm-svn: 129830
| -rw-r--r-- | clang/lib/CodeGen/ItaniumCXXABI.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/ItaniumCXXABI.cpp b/clang/lib/CodeGen/ItaniumCXXABI.cpp index c77b0bf6b88..a53ef1a2659 100644 --- a/clang/lib/CodeGen/ItaniumCXXABI.cpp +++ b/clang/lib/CodeGen/ItaniumCXXABI.cpp @@ -652,20 +652,21 @@ ItaniumCXXABI::EmitMemberPointerIsNotNull(CodeGenFunction &CGF,      return Builder.CreateICmpNE(MemPtr, NegativeOne, "memptr.tobool");    } -  // In Itanium, a member function pointer is null if 'ptr' is null. +  // In Itanium, a member function pointer is not null if 'ptr' is not null.    llvm::Value *Ptr = Builder.CreateExtractValue(MemPtr, 0, "memptr.ptr");    llvm::Constant *Zero = llvm::ConstantInt::get(Ptr->getType(), 0);    llvm::Value *Result = Builder.CreateICmpNE(Ptr, Zero, "memptr.tobool"); -  // In ARM, it's that, plus the low bit of 'adj' must be zero. +  // On ARM, a member function pointer is also non-null if the low bit of 'adj' +  // (the virtual bit) is set.    if (IsARM) {      llvm::Constant *One = llvm::ConstantInt::get(Ptr->getType(), 1);      llvm::Value *Adj = Builder.CreateExtractValue(MemPtr, 1, "memptr.adj");      llvm::Value *VirtualBit = Builder.CreateAnd(Adj, One, "memptr.virtualbit"); -    llvm::Value *IsNotVirtual = Builder.CreateICmpEQ(VirtualBit, Zero, -                                                     "memptr.notvirtual"); -    Result = Builder.CreateAnd(Result, IsNotVirtual); +    llvm::Value *IsVirtual = Builder.CreateICmpNE(VirtualBit, Zero, +                                                  "memptr.isvirtual"); +    Result = Builder.CreateOr(Result, IsVirtual);    }    return Result;  | 

