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

Side by Side Diff: src/objects-inl.h

Issue 19537: Adding src_file_name:line_number into perf log entries for compiled JS functi... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 10 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/objects.cc ('k') | tools/tickprocessor.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | tools/tickprocessor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698