Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: tools/gen-postmortem-metadata.py

Issue 11743017: Merged r13285, r13303 into 3.15 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.15
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # 3 #
4 # Copyright 2012 the V8 project authors. All rights reserved. 4 # Copyright 2012 the V8 project authors. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 6 # modification, are permitted provided that the following conditions are
7 # met: 7 # met:
8 # 8 #
9 # * Redistributions of source code must retain the above copyright 9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 { 'name': 'ConsStringTag', 'value': 'kConsStringTag' }, 69 { 'name': 'ConsStringTag', 'value': 'kConsStringTag' },
70 { 'name': 'ExternalStringTag', 'value': 'kExternalStringTag' }, 70 { 'name': 'ExternalStringTag', 'value': 'kExternalStringTag' },
71 71
72 { 'name': 'FailureTag', 'value': 'kFailureTag' }, 72 { 'name': 'FailureTag', 'value': 'kFailureTag' },
73 { 'name': 'FailureTagMask', 'value': 'kFailureTagMask' }, 73 { 'name': 'FailureTagMask', 'value': 'kFailureTagMask' },
74 { 'name': 'HeapObjectTag', 'value': 'kHeapObjectTag' }, 74 { 'name': 'HeapObjectTag', 'value': 'kHeapObjectTag' },
75 { 'name': 'HeapObjectTagMask', 'value': 'kHeapObjectTagMask' }, 75 { 'name': 'HeapObjectTagMask', 'value': 'kHeapObjectTagMask' },
76 { 'name': 'SmiTag', 'value': 'kSmiTag' }, 76 { 'name': 'SmiTag', 'value': 'kSmiTag' },
77 { 'name': 'SmiTagMask', 'value': 'kSmiTagMask' }, 77 { 'name': 'SmiTagMask', 'value': 'kSmiTagMask' },
78 { 'name': 'SmiValueShift', 'value': 'kSmiTagSize' }, 78 { 'name': 'SmiValueShift', 'value': 'kSmiTagSize' },
79 { 'name': 'SmiShiftSize', 'value': 'kSmiShiftSize' },
79 { 'name': 'PointerSizeLog2', 'value': 'kPointerSizeLog2' }, 80 { 'name': 'PointerSizeLog2', 'value': 'kPointerSizeLog2' },
80 81
81 { 'name': 'prop_idx_transitions',
82 'value': 'DescriptorArray::kTransitionsIndex' },
83 { 'name': 'prop_idx_first', 82 { 'name': 'prop_idx_first',
84 'value': 'DescriptorArray::kFirstIndex' }, 83 'value': 'DescriptorArray::kFirstIndex' },
85 { 'name': 'prop_type_field', 84 { 'name': 'prop_type_field',
86 'value': 'FIELD' }, 85 'value': 'FIELD' },
87 { 'name': 'prop_type_first_phantom', 86 { 'name': 'prop_type_first_phantom',
88 'value': 'MAP_TRANSITION' }, 87 'value': 'TRANSITION' },
89 { 'name': 'prop_type_mask', 88 { 'name': 'prop_type_mask',
90 'value': 'PropertyDetails::TypeField::kMask' }, 89 'value': 'PropertyDetails::TypeField::kMask' },
91 90
92 { 'name': 'off_fp_context', 91 { 'name': 'off_fp_context',
93 'value': 'StandardFrameConstants::kContextOffset' }, 92 'value': 'StandardFrameConstants::kContextOffset' },
94 { 'name': 'off_fp_marker', 93 { 'name': 'off_fp_marker',
95 'value': 'StandardFrameConstants::kMarkerOffset' }, 94 'value': 'StandardFrameConstants::kMarkerOffset' },
96 { 'name': 'off_fp_function', 95 { 'name': 'off_fp_function',
97 'value': 'JavaScriptFrameConstants::kFunctionOffset' }, 96 'value': 'JavaScriptFrameConstants::kFunctionOffset' },
98 { 'name': 'off_fp_args', 97 { 'name': 'off_fp_args',
99 'value': 'JavaScriptFrameConstants::kLastParameterOffset' }, 98 'value': 'JavaScriptFrameConstants::kLastParameterOffset' },
100 ]; 99 ];
101 100
102 # 101 #
103 # The following useful fields are missing accessors, so we define fake ones. 102 # The following useful fields are missing accessors, so we define fake ones.
104 # 103 #
105 extras_accessors = [ 104 extras_accessors = [
106 'HeapObject, map, Map, kMapOffset', 105 'HeapObject, map, Map, kMapOffset',
107 'JSObject, elements, Object, kElementsOffset', 106 'JSObject, elements, Object, kElementsOffset',
108 'FixedArray, data, uintptr_t, kHeaderSize', 107 'FixedArray, data, uintptr_t, kHeaderSize',
109 'Map, instance_attributes, int, kInstanceAttributesOffset', 108 'Map, instance_attributes, int, kInstanceAttributesOffset',
110 'Map, instance_descriptors, int, kInstanceDescriptorsOrBitField3Offset',
111 'Map, inobject_properties, int, kInObjectPropertiesOffset', 109 'Map, inobject_properties, int, kInObjectPropertiesOffset',
112 'Map, instance_size, int, kInstanceSizeOffset', 110 'Map, instance_size, int, kInstanceSizeOffset',
113 'HeapNumber, value, double, kValueOffset', 111 'HeapNumber, value, double, kValueOffset',
114 'ConsString, first, String, kFirstOffset', 112 'ConsString, first, String, kFirstOffset',
115 'ConsString, second, String, kSecondOffset', 113 'ConsString, second, String, kSecondOffset',
116 'ExternalString, resource, Object, kResourceOffset', 114 'ExternalString, resource, Object, kResourceOffset',
117 'SeqOneByteString, chars, char, kHeaderSize', 115 'SeqOneByteString, chars, char, kHeaderSize',
118 'SharedFunctionInfo, code, Code, kCodeOffset', 116 'SharedFunctionInfo, code, Code, kCodeOffset',
119 'Code, instruction_start, uintptr_t, kHeaderSize', 117 'Code, instruction_start, uintptr_t, kHeaderSize',
120 'Code, instruction_size, int, kInstructionSizeOffset', 118 'Code, instruction_size, int, kInstructionSizeOffset',
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 470
473 out.write(footer); 471 out.write(footer);
474 472
475 if (len(sys.argv) < 4): 473 if (len(sys.argv) < 4):
476 print('usage: %s output.cc objects.h objects-inl.h' % sys.argv[0]); 474 print('usage: %s output.cc objects.h objects-inl.h' % sys.argv[0]);
477 sys.exit(2); 475 sys.exit(2);
478 476
479 load_objects(); 477 load_objects();
480 load_fields(); 478 load_fields();
481 emit_config(); 479 emit_config();
OLDNEW
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698