OLD | NEW |
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 Loading... |
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 { 'name': 'prop_idx_transitions', |
82 'value': 'DescriptorArray::kTransitionsIndex' }, | 83 'value': 'DescriptorArray::kTransitionsIndex' }, |
83 { 'name': 'prop_idx_first', | 84 { 'name': 'prop_idx_first', |
84 'value': 'DescriptorArray::kFirstIndex' }, | 85 'value': 'DescriptorArray::kFirstIndex' }, |
85 { 'name': 'prop_type_field', | 86 { 'name': 'prop_type_field', |
86 'value': 'FIELD' }, | 87 'value': 'FIELD' }, |
87 { 'name': 'prop_type_first_phantom', | 88 { 'name': 'prop_type_first_phantom', |
88 'value': 'MAP_TRANSITION' }, | 89 'value': 'MAP_TRANSITION' }, |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 | 473 |
473 out.write(footer); | 474 out.write(footer); |
474 | 475 |
475 if (len(sys.argv) < 4): | 476 if (len(sys.argv) < 4): |
476 print('usage: %s output.cc objects.h objects-inl.h' % sys.argv[0]); | 477 print('usage: %s output.cc objects.h objects-inl.h' % sys.argv[0]); |
477 sys.exit(2); | 478 sys.exit(2); |
478 | 479 |
479 load_objects(); | 480 load_objects(); |
480 load_fields(); | 481 load_fields(); |
481 emit_config(); | 482 emit_config(); |
OLD | NEW |