Re: [lldb-dev] Accessing only specific words in guest memory

2018-06-21 Thread Andrew Baumann via lldb-dev
to read and not to read. So if you try to actually print the structure (with "frame var" or "expr") we will grab the whole thing. But turning off the cache should allow you to avoid the disallowed regions manually. Jim > On Jun 21, 2018, at 11:20 AM, Andrew Baumann via l

[lldb-dev] Accessing only specific words in guest memory

2018-06-21 Thread Andrew Baumann via lldb-dev
Hi, I’m trying to use lldb 6.0 on Linux to debug a process that has an SGX enclave inside it. One of the data structures there (the “TCS”) only permits access to certain fields. The problem is that when I try to access those fields in LLDB, it tries to read an entire page of memory from the gue