[Lldb-commits] [PATCH] D146320: [lldb] Test direct ivar access in objc++ (NFC)

Dave Lee via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 21 10:15:02 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG75fdf7fd1516: [lldb] Test direct ivar access in objc++ (NFC) (authored by kastiglione).

Changed prior to commit:
  https://reviews.llvm.org/D146320?vs=506157&id=507033#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146320/new/

https://reviews.llvm.org/D146320

Files:
  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


Index: lldb/test/API/commands/frame/var/direct-ivar/objcpp/main.mm
===================================================================
--- /dev/null
+++ 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;
+}
Index: lldb/test/API/commands/frame/var/direct-ivar/objcpp/TestFrameVarDirectIvarObjCPlusPlus.py
===================================================================
--- /dev/null
+++ 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")
Index: lldb/test/API/commands/frame/var/direct-ivar/objcpp/Makefile
===================================================================
--- /dev/null
+++ 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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146320.507033.patch
Type: text/x-patch
Size: 2252 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230321/209c9e36/attachment.bin>


More information about the lldb-commits mailing list