OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 14 matching lines...) Expand all Loading... |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #include <stdio.h> | 28 #include <stdio.h> |
29 #include <stdlib.h> | 29 #include <stdlib.h> |
30 | 30 |
31 #include <algorithm> | 31 #include <algorithm> |
32 | 32 |
33 #include <google_breakpad/processor/minidump.h> | 33 #include <google_breakpad/processor/minidump.h> |
34 | 34 |
35 #define ENABLE_DEBUGGER_SUPPORT | |
36 | |
37 #include <v8.h> | 35 #include <v8.h> |
38 | 36 |
39 namespace { | 37 namespace { |
40 | 38 |
41 using google_breakpad::Minidump; | 39 using google_breakpad::Minidump; |
42 using google_breakpad::MinidumpContext; | 40 using google_breakpad::MinidumpContext; |
43 using google_breakpad::MinidumpThread; | 41 using google_breakpad::MinidumpThread; |
44 using google_breakpad::MinidumpThreadList; | 42 using google_breakpad::MinidumpThreadList; |
45 using google_breakpad::MinidumpException; | 43 using google_breakpad::MinidumpException; |
46 using google_breakpad::MinidumpMemoryRegion; | 44 using google_breakpad::MinidumpMemoryRegion; |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 int main(int argc, char **argv) { | 278 int main(int argc, char **argv) { |
281 if (argc != 2) { | 279 if (argc != 2) { |
282 fprintf(stderr, "usage: %s <minidump>\n", argv[0]); | 280 fprintf(stderr, "usage: %s <minidump>\n", argv[0]); |
283 return 1; | 281 return 1; |
284 } | 282 } |
285 | 283 |
286 DumpHeapStats(argv[1]); | 284 DumpHeapStats(argv[1]); |
287 | 285 |
288 return 0; | 286 return 0; |
289 } | 287 } |
OLD | NEW |