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
This commit is contained in:
mstarzinger@chromium.org 2013-03-19 14:57:42 +00:00
parent 002ba9c76d
commit cc38e56fdf

View File

@ -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()