<div dir="ltr">> <span style="font-family:arial,sans-serif;font-size:13px">"You can't possibly do that, so many other architectures have 8-bit bytes, and so this proposal would make them harder to enhance, for the benefit of (currently) just kalimba"</span><br style="font-family:arial,sans-serif;font-size:13px">
<div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div><span style="font-family:arial,sans-serif;font-size:13px">From a design principle, I would probably vote for having non-8-bit-bytes added as a layer on top of memory accesses that is only used for systems that need it.  I'd strongly prefer not to have the generality of n-bit (or multiple of 8-bit bytes) permute throughout the lldb code base.  I can see that becoming challenging from a maintainability standpoint (testing, code complexity, etc.)</span></div>
<div><br></div><div>I could imagine a layer you build on top of memory accesses that knows how to run out and grab the right underlying cpu_arch-specific bytes to satisfy the request.  And only wiring that in to low level memory access maybe in the memory read/write virtual methods (like Process::DoReadMemory() and friends).</div>
<div><br></div><div>That's just my take.  Maintainability and testability being the key driver here.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Aug 29, 2014 at 5:11 AM, Matthew Gardiner <span dir="ltr"><<a href="mailto:mg11@csr.com" target="_blank">mg11@csr.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Based on some recent investigation, it looks as if I won't need to modify the CoreDefinition structure of ArchSpec.cpp. In a local change, I've added specification for the kalimba variants in the SubArchType of llvm::Triple. So it's now possible for me to implement<br>

<br>
uint32_t ArchSpec::GetCodeByteSize() const<br>
uint32_t ArchSpec::GetDataByteSize() const<br>
<br>
by inspection of subarch field of the triple contained in ArchSpec.<br>
<br>
However, I'd still appreciate some feedback on a more conceptual level regarding this proposal.<br>
<br>
thanks<br>
Matt<br>
<br>
Matthew Gardiner wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
Hi folks,<br>
<br>
One of the challenges that I need to resolve regarding debugging kalimba processors, is that certain variants have different notions of the size (in bits) of a byte, compared to a lot of more mainstream processors. What I'm referring to is the size of a minimum addressable unit, when the processor accesses memory. For example, on a kalimba architecture version 3, a "byte" (minimum addressable unit) from the data bus is 24-bits, so if the processor reads from address 8001 it reads 24-bits, and from address 8002 the next 24-bits are read, and so on... (this also means that for this variant a char, int, long, pointer are 24-bits in size). For kalimba architecture version 4, however, we have the minimum addressable unit being 8-bits, and correspondingly more "conventional" sizes for primitive types.<br>

<br>
I imagine that this will effect the kalimba lldb port is various ways. The most obvious one, and hence the one I'd like to solve first, is that way in which raw memory read/write are implemented. As an example when I ask lldb to read 4 "bytes" (addressable units worth of data) from a kalimba with 8-bit bytes I expect to see this:<br>

<br>
(lldb) memory read --count 4 0x0328<br>
0x00000328: 00 07 08 08                                      ....<br>
(lldb)<br>
<br>
However if target processor has 24-bit bytes then I expect the same query to yield the following answer:<br>
<br>
(lldb) memory read --count 4 0x0328<br>
0x00000328: 000708 080012 095630 023480                                      ....<br>
(lldb)<br>
<br>
Just considering the above scenario leads me to believe that my first challenge is arranging for the remote protocol implementation (currently Process/gdb-remote et al) to assume Nx host bytes (N being a target-specific value) for each target byte accessed, and for the memory read and formatting code (above) to behave correctly, given the discrepancy between host and target byte sizes. I guess I'll see many other challenges - for example, frame variable decode, stack unwind etc. (but since *those* challenges require work on clang/llvm backend, and CSR have no llvm person yet, I want to concentrate on raw memory access first...)<br>

<br>
For an added complication (since kalimba is a harvard architecture) certain kalimba variants have differing addressable unit sizes for memory on the code bus and data bus. Kalimba Architecture 5 has 8-bit addressable code, and 24-bit addressable data...<br>

<br>
My initial idea for how to start to address the above challenge is to augment the CoreDefinition structure in ArchSpec.cpp as follows:<br>
<br>
    struct CoreDefinition<br>
    {<br>
        ByteOrder default_byte_order;<br>
        uint32_t addr_byte_size;<br>
        uint32_t min_opcode_byte_size;<br>
        uint32_t max_opcode_byte_size;<br>
+       uint32_t code_byte_size;<br>
+       uint32_t data_byte_size;<br>
        llvm::Triple::ArchType machine;<br>
        ArchSpec::Core core;<br>
        const char * const name;<br>
    };<br>
<br>
Where code_byte_size and data_byte_size would specify the size in host (8-bit) bytes the sizes of the minimum addressable units on the referenced architectures. So, e.g.<br>
For kalimba 3, with 24-bit data bytes and 32-bit code bytes we'd have data_byte_size=3 and code_byte_size=4<br>
For kalimba 4, with 8-bit data bytes and 8-bit code bytes we'd have data_byte_size=1 and code_byte_size=1<br>
<br>
So, then I'd update the g_core_definitions array within ArchSpec.cpp accordingly, such that all non-kalimbas would have 1 as the setting for the new datas and the kalimba entries would have those fields made to match the architectures.<br>

<br>
The ArchSpec class would then require the following accessors: uint32_t GetCodeByteSize() and uint32_t GetDataByteSize(); to supply client code with the required hints to correctly implement memory accesses.<br>
<br>
My next plan would be to "massage" the code in the execution flow from an (lldb) memory read invocation through to the gdb-remote comms until I see the memory read examples I illustrated above, working for 8-bit and 24-bit data kalimba targets.<br>

<br>
I'd appreciate all comments and opinions as to what I've described above from the lldb community. Basically, I'm curious as to what people think of the whole concept, e.g.<br>
<br>
"You can't possibly do that, so many other architectures have 8-bit bytes, and so this proposal would make them harder to enhance, for the benefit of (currently) just kalimba"<br>
"Yes, that's a good idea, lldb can accommodate the most unusual of architectures"<br>
<br>
And I'm also interested in technical comments, e.g. should an instance of CoreDefinition be added to ArchSpec, or is just adding the extra byte-size attributes sufficient... or if anyone thinks that modifying gdb-remote is a bad idea, and that I should be creating kalimba process abstractions (and factor out the common code)?<br>

<br>
thanks<br>
Matt<br>
<br>
<br>
<br>
Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom<br>

More information can be found at <a href="http://www.csr.com" target="_blank">www.csr.com</a>. Keep up to date with CSR on our technical blog, <a href="http://www.csr.com/blog" target="_blank">www.csr.com/blog</a>, CSR people blog, <a href="http://www.csr.com/people" target="_blank">www.csr.com/people</a>, YouTube, <a href="http://www.youtube.com/user/CSRplc" target="_blank">www.youtube.com/user/CSRplc</a>, Facebook, <a href="http://www.facebook.com/pages/CSR/191038434253534" target="_blank">www.facebook.com/pages/CSR/<u></u>191038434253534</a>, or follow us on Twitter at <a href="http://www.twitter.com/CSR_plc" target="_blank">www.twitter.com/CSR_plc</a>.<br>

New for 2014, you can now access the wide range of products powered by aptX at <a href="http://www.aptx.com" target="_blank">www.aptx.com</a>.<br>
______________________________<u></u>_________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
<br>
<br></div></div>
To report this email as spam click <a href="https://www.mailcontrol.com/sr/nergAztaJijGX2PQPOmvUs3i7gRn49Hg+ad6BErjJilinO59sjEAHiLtU+YE5asZgsAG+GH7HC!3KeH4!zzvzA==" target="_blank">https://www.mailcontrol.com/<u></u>sr/<u></u>nergAztaJijGX2PQPOmvUs3i7gRn49<u></u>Hg+ad6BErjJilinO59sjEAHiLtU+<u></u>YE5asZgsAG+GH7HC!3KeH4!zzvzA==</a> .<br>

</blockquote><div class="HOEnZb"><div class="h5">
<br>
______________________________<u></u>_________________<br>
lldb-dev mailing list<br>
<a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><table cellspacing="0" cellpadding="0" style="color:rgb(136,136,136);font-family:'Times New Roman'"><tbody><tr style="color:rgb(85,85,85);font-family:sans-serif;font-size:small">
<td nowrap style="border-top-style:solid;border-top-color:rgb(213,15,37);border-top-width:2px">Todd Fiala |</td><td nowrap style="border-top-style:solid;border-top-color:rgb(51,105,232);border-top-width:2px"> Software Engineer |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(0,153,57);border-top-width:2px"> <a href="mailto:tfiala@google.com" style="color:rgb(17,85,204)" target="_blank"><span style="background-color:rgb(255,255,204);color:rgb(34,34,34);background-repeat:initial initial">tfiala@google.com</span></a> |</td>
<td nowrap style="border-top-style:solid;border-top-color:rgb(238,178,17);border-top-width:2px"><font color="#1155cc"> <a>650-943-3180</a></font></td></tr></tbody></table><br></div>
</div>