Disable grokdumps module decoding temporarily.

R=yangguo@chromium.org

Review URL: https://codereview.chromium.org/12755031

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13989 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 002ba9c7
......@@ -2085,13 +2085,14 @@ def AnalyzeMinidump(options, minidump_name):
else:
print " eflags: %s" % bin(reader.exception_context.eflags)[2:]
print
print " modules:"
for module in reader.module_list.modules:
name = GetModuleName(reader, module)
if name in KNOWN_MODULES:
print " %s at %08X" % (name, module.base_of_image)
reader.TryLoadSymbolsFor(name, module)
# TODO(mstarzinger): Disabled because broken, needs investigation.
#print
#print " modules:"
#for module in reader.module_list.modules:
# name = GetModuleName(reader, module)
# if name in KNOWN_MODULES:
# print " %s at %08X" % (name, module.base_of_image)
# reader.TryLoadSymbolsFor(name, module)
print
stack_top = reader.ExceptionSP()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment