[Lldb-commits] [lldb] 75fdf7f - [lldb] Test direct ivar access in objc++ (NFC)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 21 10:14:47 PDT 2023


Author: Dave Lee
Date: 2023-03-21T10:14:42-07:00
New Revision: 75fdf7fd1516090651c0c3ffba4869cba9f3a879

URL: https://github.com/llvm/llvm-project/commit/75fdf7fd1516090651c0c3ffba4869cba9f3a879
DIFF: https://github.com/llvm/llvm-project/commit/75fdf7fd1516090651c0c3ffba4869cba9f3a879.diff

LOG: [lldb] Test direct ivar access in objc++ (NFC)

Add an Objective-C++ specific test for direct ivar access. This adds to the existing C++ and ObjC tests, and tests against regression for future refactoring.

Differential Revision: https://reviews.llvm.org/D146320

Added: 
    lldb/test/API/commands/frame/var/direct-ivar/objcpp/Makefile
    lldb/test/API/commands/frame/var/direct-ivar/objcpp/TestFrameVarDirectIvarObjCPlusPlus.py
    lldb/test/API/commands/frame/var/direct-ivar/objcpp/main.mm

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/frame/var/direct-ivar/objcpp/Makefile b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/Makefile
new file mode 100644
index 0000000000000..e987754de59ab
--- /dev/null
+++ b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/Makefile
@@ -0,0 +1,4 @@
+OBJCXX_SOURCES := main.mm
+CFLAGS_EXTRAS := -fblocks -fobjc-arc
+LD_EXTRAS := -lobjc
+include Makefile.rules

diff  --git a/lldb/test/API/commands/frame/var/direct-ivar/objcpp/TestFrameVarDirectIvarObjCPlusPlus.py b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/TestFrameVarDirectIvarObjCPlusPlus.py
new file mode 100644
index 0000000000000..e09a8ff5df96d
--- /dev/null
+++ b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/TestFrameVarDirectIvarObjCPlusPlus.py
@@ -0,0 +1,24 @@
+import lldb
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test.decorators import *
+from lldbsuite.test import lldbutil
+
+
+class TestCase(TestBase):
+    @skipUnlessDarwin
+    def test_objc_self(self):
+        self.build()
+        lldbutil.run_to_source_breakpoint(self, "check self", lldb.SBFileSpec("main.mm"))
+        self.expect("frame variable _ivar", startstr="(int) _ivar = 30")
+
+    @skipUnlessDarwin
+    def test_objc_explicit_self(self):
+        self.build()
+        lldbutil.run_to_source_breakpoint(self, "check explicit self", lldb.SBFileSpec("main.mm"))
+        self.expect("frame variable _ivar", startstr="(int) _ivar = 30")
+
+    @skipUnlessDarwin
+    def test_cpp_this(self):
+        self.build()
+        lldbutil.run_to_source_breakpoint(self, "check this", lldb.SBFileSpec("main.mm"))
+        self.expect("frame variable m_field", startstr="(int) m_field = 41")

diff  --git a/lldb/test/API/commands/frame/var/direct-ivar/objcpp/main.mm b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/main.mm
new file mode 100644
index 0000000000000..2903d19cee883
--- /dev/null
+++ b/lldb/test/API/commands/frame/var/direct-ivar/objcpp/main.mm
@@ -0,0 +1,35 @@
+#import <objc/NSObject.h>
+#include <stdio.h>
+
+struct Structure {
+  int m_field;
+  void fun() {
+    puts("check this\n");
+  }
+};
+
+ at interface Classic : NSObject {
+ at public
+  int _ivar;
+}
+ at end
+
+ at implementation Classic
+- (void)fun {
+  puts("check self\n");
+}
+ at end
+
+int main() {
+  Structure s;
+  s.m_field = 41;
+  s.fun();
+
+  Classic *c = [Classic new];
+  c->_ivar = 30;
+  [c fun];
+
+  Classic *self = c;
+  puts("check explicit self\n");
+  (void)self;
+}


        


More information about the lldb-commits mailing list