2011-12-17 07:04:52 +08:00
|
|
|
"""
|
|
|
|
Test the solution to issue 11581.
|
|
|
|
valobj.AddressOf() returns None when an address is
|
|
|
|
expected in a SyntheticChildrenProvider
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os, time
|
|
|
|
import unittest2
|
|
|
|
import lldb
|
|
|
|
from lldbtest import *
|
|
|
|
|
|
|
|
class Issue11581TestCase(TestBase):
|
|
|
|
|
|
|
|
mydir = os.path.join("expression_command", "issue_11588")
|
|
|
|
|
|
|
|
def test_11581_commands(self):
|
|
|
|
# This is the function to remove the custom commands in order to have a
|
|
|
|
# clean slate for the next test case.
|
|
|
|
def cleanup():
|
|
|
|
self.runCmd('type synthetic clear', check=False)
|
|
|
|
|
|
|
|
# Execute the cleanup function during test case tear down.
|
|
|
|
self.addTearDownHook(cleanup)
|
|
|
|
|
|
|
|
"""valobj.AddressOf() should return correct values."""
|
|
|
|
self.buildDefault()
|
|
|
|
|
|
|
|
self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
|
|
|
|
|
|
|
|
self.runCmd("breakpoint set --name main")
|
|
|
|
|
|
|
|
self.runCmd("run", RUN_SUCCEEDED)
|
|
|
|
|
|
|
|
self.runCmd("next", RUN_SUCCEEDED)
|
|
|
|
self.runCmd("next", RUN_SUCCEEDED)
|
|
|
|
self.runCmd("next", RUN_SUCCEEDED)
|
|
|
|
self.runCmd("next", RUN_SUCCEEDED)
|
|
|
|
self.runCmd("next", RUN_SUCCEEDED)
|
|
|
|
|
2012-04-25 08:21:42 +08:00
|
|
|
self.runCmd("command script import --allow-reload s11588.py")
|
2011-12-17 07:04:52 +08:00
|
|
|
self.runCmd("type synthetic add --python-class s11588.Issue11581SyntheticProvider StgClosure")
|
|
|
|
|
2013-01-10 04:12:53 +08:00
|
|
|
self.expect("expr --show-types -- *((StgClosure*)(r14-1))",
|
2011-12-17 07:04:52 +08:00
|
|
|
substrs = ["(StgClosure) $",
|
2012-01-06 08:35:38 +08:00
|
|
|
"(StgClosure *) &$","0x",
|
2012-04-20 02:36:11 +08:00
|
|
|
"addr = ",
|
|
|
|
"load_address = "])
|
2011-12-17 07:04:52 +08:00
|
|
|
|
|
|
|
|
2012-01-06 08:35:38 +08:00
|
|
|
target = lldb.debugger.GetSelectedTarget()
|
|
|
|
process = target.GetProcess()
|
|
|
|
# register r14 does not exist on 32-bit architectures, it is an x86_64 extension
|
|
|
|
# let's skip this part of the test if we are in 32-bit mode
|
|
|
|
if process.GetAddressByteSize() == 8:
|
|
|
|
frame = process.GetSelectedThread().GetSelectedFrame()
|
|
|
|
pointer = frame.FindVariable("r14")
|
|
|
|
addr = pointer.GetValueAsUnsigned(0)
|
|
|
|
self.assertTrue(addr != 0, "could not read pointer to StgClosure")
|
|
|
|
addr = addr - 1
|
|
|
|
self.runCmd("register write r14 %d" % addr)
|
|
|
|
self.expect("register read r14",
|
2012-05-12 04:37:34 +08:00
|
|
|
substrs = ["0x",hex(addr)[2:].rstrip("L")]) # Remove trailing 'L' if it exists
|
2013-01-10 04:12:53 +08:00
|
|
|
self.expect("expr --show-types -- *(StgClosure*)$r14",
|
2012-01-06 08:35:38 +08:00
|
|
|
substrs = ["(StgClosure) $",
|
|
|
|
"(StgClosure *) &$","0x",
|
2012-12-08 01:45:05 +08:00
|
|
|
"addr = ",
|
|
|
|
"load_address = ",
|
2012-05-12 04:37:34 +08:00
|
|
|
hex(addr)[2:].rstrip("L"),
|
2012-01-06 08:35:38 +08:00
|
|
|
str(addr)])
|
|
|
|
|
|
|
|
|
2011-12-17 07:04:52 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import atexit
|
|
|
|
lldb.SBDebugger.Initialize()
|
|
|
|
atexit.register(lambda: lldb.SBDebugger.Terminate())
|
|
|
|
unittest2.main()
|