On some platforms, the compiler is allowed to assume that BOOL == bool. On others...
authorEnrico Granata <egranata@apple.com>
Tue, 15 Mar 2016 23:38:04 +0000 (23:38 +0000)
committerEnrico Granata <egranata@apple.com>
Tue, 15 Mar 2016 23:38:04 +0000 (23:38 +0000)
This can cause differences in which bit patterns end up meaning YES or NO. In general, however, 0 == NO and 1 == YES.

To keep it simple, LLDB will now show "YES" and "NO" only for 1 and 0 respectively, and format other values as the plain numeric value instead.

Fixes rdar://24809994

llvm-svn: 263604

lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm
lldb/source/Plugins/Language/ObjC/Cocoa.cpp

index 6912449..fb3511e 100644 (file)
@@ -57,6 +57,8 @@ class DataFormatterBoolRefPtr(TestBase):
                     substrs = ['YES'])
         self.expect('frame variable no_ref',
                     substrs = ['NO'])
+        self.expect('frame variable unset_ref',
+                    substrs = ['12'])
 
 
         # Now check that we use the right summary for BOOL*
@@ -64,6 +66,8 @@ class DataFormatterBoolRefPtr(TestBase):
                     substrs = ['YES'])
         self.expect('frame variable no_ptr',
                     substrs = ['NO'])
+        self.expect('frame variable unset_ptr',
+                    substrs = ['12'])
 
 
         # Now check that we use the right summary for BOOL
@@ -71,3 +75,5 @@ class DataFormatterBoolRefPtr(TestBase):
                     substrs = ['YES'])
         self.expect('frame variable no',
                     substrs = ['NO'])
+        self.expect('frame variable unset',
+                    substrs = ['12'])
index a2461fd..22c8790 100644 (file)
 
 int main (int argc, const char * argv[])
 {
-    
     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
        BOOL yes  = YES;
        BOOL no = NO;
+    BOOL unset = 12;
        
        BOOL &yes_ref = yes;
        BOOL &no_ref = no;
+       BOOL &unset_ref = unset;
        
        BOOL* yes_ptr = &yes;
        BOOL* no_ptr = &no;
+       BOOL* unset_ptr = &unset;
 
     [pool drain];// Set break point at this line.
     return 0;
index 1922de3..0dd5e17 100644 (file)
@@ -870,13 +870,19 @@ lldb_private::formatters::ObjCBOOLSummaryProvider (ValueObject& valobj, Stream&
         if (!real_guy_sp)
             return false;
     }
-    uint64_t value = real_guy_sp->GetValueAsUnsigned(0);
-    if (value == 0)
-    {
-        stream.Printf("NO");
-        return true;
+    uint8_t value = (real_guy_sp->GetValueAsUnsigned(0) & 0xFF);
+    switch (value)
+    {
+        case 0:
+            stream.Printf("NO");
+            break;
+        case 1:
+            stream.Printf("YES");
+            break;
+        default:
+            stream.Printf("%u",value);
+            break;
     }
-    stream.Printf("YES");
     return true;
 }