| 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 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1982 ACCESSORS(SignatureInfo, args, Object, kArgsOffset) | 1982 ACCESSORS(SignatureInfo, args, Object, kArgsOffset) |
| 1983 | 1983 |
| 1984 ACCESSORS(TypeSwitchInfo, types, Object, kTypesOffset) | 1984 ACCESSORS(TypeSwitchInfo, types, Object, kTypesOffset) |
| 1985 | 1985 |
| 1986 ACCESSORS(Script, source, Object, kSourceOffset) | 1986 ACCESSORS(Script, source, Object, kSourceOffset) |
| 1987 ACCESSORS(Script, name, Object, kNameOffset) | 1987 ACCESSORS(Script, name, Object, kNameOffset) |
| 1988 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset) | 1988 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset) |
| 1989 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset) | 1989 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset) |
| 1990 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset) | 1990 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset) |
| 1991 ACCESSORS(Script, type, Smi, kTypeOffset) | 1991 ACCESSORS(Script, type, Smi, kTypeOffset) |
| 1992 ACCESSORS(Script, line_ends, Object, kLineEndsOffset) |
| 1992 | 1993 |
| 1993 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex) | 1994 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex) |
| 1994 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex) | 1995 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex) |
| 1995 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) | 1996 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) |
| 1996 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) | 1997 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) |
| 1997 | 1998 |
| 1998 ACCESSORS(BreakPointInfo, code_position, Smi, kCodePositionIndex) | 1999 ACCESSORS(BreakPointInfo, code_position, Smi, kCodePositionIndex) |
| 1999 ACCESSORS(BreakPointInfo, source_position, Smi, kSourcePositionIndex) | 2000 ACCESSORS(BreakPointInfo, source_position, Smi, kSourcePositionIndex) |
| 2000 ACCESSORS(BreakPointInfo, statement_position, Smi, kStatementPositionIndex) | 2001 ACCESSORS(BreakPointInfo, statement_position, Smi, kStatementPositionIndex) |
| 2001 ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex) | 2002 ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex) |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2495 #undef WRITE_INT_FIELD | 2496 #undef WRITE_INT_FIELD |
| 2496 #undef READ_SHORT_FIELD | 2497 #undef READ_SHORT_FIELD |
| 2497 #undef WRITE_SHORT_FIELD | 2498 #undef WRITE_SHORT_FIELD |
| 2498 #undef READ_BYTE_FIELD | 2499 #undef READ_BYTE_FIELD |
| 2499 #undef WRITE_BYTE_FIELD | 2500 #undef WRITE_BYTE_FIELD |
| 2500 | 2501 |
| 2501 | 2502 |
| 2502 } } // namespace v8::internal | 2503 } } // namespace v8::internal |
| 2503 | 2504 |
| 2504 #endif // V8_OBJECTS_INL_H_ | 2505 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |