OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 2053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2064 ACCESSORS(SignatureInfo, args, Object, kArgsOffset) | 2064 ACCESSORS(SignatureInfo, args, Object, kArgsOffset) |
2065 | 2065 |
2066 ACCESSORS(TypeSwitchInfo, types, Object, kTypesOffset) | 2066 ACCESSORS(TypeSwitchInfo, types, Object, kTypesOffset) |
2067 | 2067 |
2068 ACCESSORS(Script, source, Object, kSourceOffset) | 2068 ACCESSORS(Script, source, Object, kSourceOffset) |
2069 ACCESSORS(Script, name, Object, kNameOffset) | 2069 ACCESSORS(Script, name, Object, kNameOffset) |
2070 ACCESSORS(Script, id, Object, kIdOffset) | 2070 ACCESSORS(Script, id, Object, kIdOffset) |
2071 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset) | 2071 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset) |
2072 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset) | 2072 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset) |
2073 ACCESSORS(Script, data, Object, kDataOffset) | 2073 ACCESSORS(Script, data, Object, kDataOffset) |
| 2074 ACCESSORS(Script, context_data, Object, kContextOffset) |
2074 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset) | 2075 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset) |
2075 ACCESSORS(Script, type, Smi, kTypeOffset) | 2076 ACCESSORS(Script, type, Smi, kTypeOffset) |
2076 ACCESSORS(Script, line_ends, Object, kLineEndsOffset) | 2077 ACCESSORS(Script, line_ends, Object, kLineEndsOffset) |
2077 | 2078 |
2078 #ifdef ENABLE_DEBUGGER_SUPPORT | 2079 #ifdef ENABLE_DEBUGGER_SUPPORT |
2079 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex) | 2080 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex) |
2080 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex) | 2081 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex) |
2081 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) | 2082 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) |
2082 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) | 2083 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) |
2083 | 2084 |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2607 #undef WRITE_INT_FIELD | 2608 #undef WRITE_INT_FIELD |
2608 #undef READ_SHORT_FIELD | 2609 #undef READ_SHORT_FIELD |
2609 #undef WRITE_SHORT_FIELD | 2610 #undef WRITE_SHORT_FIELD |
2610 #undef READ_BYTE_FIELD | 2611 #undef READ_BYTE_FIELD |
2611 #undef WRITE_BYTE_FIELD | 2612 #undef WRITE_BYTE_FIELD |
2612 | 2613 |
2613 | 2614 |
2614 } } // namespace v8::internal | 2615 } } // namespace v8::internal |
2615 | 2616 |
2616 #endif // V8_OBJECTS_INL_H_ | 2617 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |