<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div>On Aug 27, 2013, at 6:23 PM, Jakob Leben <<a href="mailto:jakob.leben@gmail.com">jakob.leben@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Hello,<br><br>I have got some questions regarding the LLDB C++ API which I haven't<br>found answers to in the documentation or by investigating the source<br>code so far. If there is a better place than this mailing list to<br>direct this kind of questions to, please let me know!<br><br>All the questions below are related to using the API to debug a<br>program compiled from C++ source.<br><br>1. When trying to read data from a dynamically allocated array of<br>"doubles" I fail to get all the data correctly by using<br>SBValue::GetPointeeData() and then SBData::ReadRawData(), despite the<br>fact that no call reports any error, and all the involved SBxxx<br>objects as valid. However, if I use SBValue::GetChildAtIndex for each<br>array member, each member is read correctly. What's the difference? I<br>guess this has to do something with data caching (or lack thereof)?<br><br></blockquote><div><br></div><div>Do you have a test case for your issue? I would like to take a look.</div><div>The fact that GetChildAtIndex() works is not unexpected. I would like to figure out why GetPointeeData() & ReadRawData() are failing.</div><br><blockquote type="cite">3. Despite reading the source code, I have not managed to grasp the<br>exact meaning of the words "dynamic" and "synthetic", whenever they<br>occur in the API. For example, what precisely do the<br>lldb::DynamicValueType flags mean? Is this related to dynamically<br>typed languages, or does it have to do something with caching of data<br>exchanged between debugger and debugee? What exactly does it imply if<br>I set a SBValue's "preference" to use dynamic or synthetic value?<br><br></blockquote><div><br></div><div>Dynamic means “is LLDB going to be allowed to do something to figure out the runtime type of this object”?</div><div>Imagine the following C++:</div><div><br></div><div>class Foo { virtual int DoSomething(); … };</div><div>class Bar : public Foo { virtual int DoSomething(); … };</div><div><br></div><div>int TakeAFoo (Foo* f) { return f->DoSomething(); }</div><div>…</div><div><br></div><div>TakeAFoo(new Bar());</div><div><br></div><div>now if you stop in TakeAFoo(), the “formal” (or static) type of f is Foo*, but its actual (or dynamic) type is Bar*. Can LLDB figure it out for you, or not?</div><div>There are three options: No, Without Running Code, By Running Code When Needed.</div><div>There needs to be a ternary value because at some point in the future we might need to run some code in the inferior process in order to figure out this information. Currently, either works just fine.</div><div><br></div><div>Synthetic means “is LLDB going to be allowed to apply synthetic children to this object”?</div><div>Imagine an STL vector: usually it is implemented in terms of three pointers: begin, end, end of storage.</div><div>This view is not very useful when you see it in the debugger, e.g.</div><div><br></div><div>std::vector<int> V;</div><div>V.push_back(1); V.push_back(2);</div><div><br></div><div>(lldb) frame variable V</div><div>V = {</div><div>begin = 0x1234</div><div>end = 0x123D</div><div>end of storage=0x1248</div><div>}</div><div><br></div><div>you would rather much want to see</div><div>V = {</div><div>[0] = 1</div><div>[1] = 2</div><div>}</div><div>(unless you are the implementor of the C++ standard library, that is)</div><div><br></div><div>Synthetic children are the LLDB name for the feature that allows the debugger to show logically useful child information. The way it is implemented is to have a new ValueObject on top of the “real” one that vends an aptly crafted set of children.</div><div><br></div><div>When you set dynamic and synthetic preferences on an SBValue you are essentially telling LLDB whether you want your SBValue to be backed by a static vs. a dynamic value, and whether you want to see real children or crafted ones, when available.</div><div><br></div><div>Hope this helps.</div><br><blockquote type="cite">Thank you for any answers, or directions that would help me find the<br>answers myself.<br><br>Best regards,<br>Jakob Leben<br>_______________________________________________<br>lldb-dev mailing list<br><a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev<br></blockquote><div><br></div><div>
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div style=" orphans: 2; widows: 2; border-collapse: separate; border-spacing: 0px;"><span style="font-size: 12px; orphans: auto; widows: auto;">Enrico Granata</span><br style="font-size: 12px; orphans: auto; widows: auto;"><span style="font-size: 12px; orphans: auto; widows: auto;">📩 egranata@</span><font color="#ff2600" style="font-size: 12px; orphans: auto; widows: auto;"></font><span style="font-size: 12px; orphans: auto; widows: auto;">.com</span><br style="font-size: 12px; orphans: auto; widows: auto;"><span style="font-size: 12px; orphans: auto; widows: auto;">☎️ 27683</span></div></div></div>
</div>
<br><div><div><br></div></div></body></html>