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

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

Issue 385035: Restore info needed to register profile ticks in functions from... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 1 month 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-debug.cc ('k') | src/v8.cc » ('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 2423 matching lines...) Expand 10 before | Expand all | Expand 10 after
2434 ACCESSORS(Script, source, Object, kSourceOffset) 2434 ACCESSORS(Script, source, Object, kSourceOffset)
2435 ACCESSORS(Script, name, Object, kNameOffset) 2435 ACCESSORS(Script, name, Object, kNameOffset)
2436 ACCESSORS(Script, id, Object, kIdOffset) 2436 ACCESSORS(Script, id, Object, kIdOffset)
2437 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset) 2437 ACCESSORS(Script, line_offset, Smi, kLineOffsetOffset)
2438 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset) 2438 ACCESSORS(Script, column_offset, Smi, kColumnOffsetOffset)
2439 ACCESSORS(Script, data, Object, kDataOffset) 2439 ACCESSORS(Script, data, Object, kDataOffset)
2440 ACCESSORS(Script, context_data, Object, kContextOffset) 2440 ACCESSORS(Script, context_data, Object, kContextOffset)
2441 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset) 2441 ACCESSORS(Script, wrapper, Proxy, kWrapperOffset)
2442 ACCESSORS(Script, type, Smi, kTypeOffset) 2442 ACCESSORS(Script, type, Smi, kTypeOffset)
2443 ACCESSORS(Script, compilation_type, Smi, kCompilationTypeOffset) 2443 ACCESSORS(Script, compilation_type, Smi, kCompilationTypeOffset)
2444 ACCESSORS(Script, line_ends, Object, kLineEndsOffset) 2444 ACCESSORS(Script, line_ends_fixed_array, Object, kLineEndsFixedArrayOffset)
2445 ACCESSORS(Script, line_ends_js_array, Object, kLineEndsJSArrayOffset)
2445 ACCESSORS(Script, eval_from_function, Object, kEvalFromFunctionOffset) 2446 ACCESSORS(Script, eval_from_function, Object, kEvalFromFunctionOffset)
2446 ACCESSORS(Script, eval_from_instructions_offset, Smi, 2447 ACCESSORS(Script, eval_from_instructions_offset, Smi,
2447 kEvalFrominstructionsOffsetOffset) 2448 kEvalFrominstructionsOffsetOffset)
2448 2449
2449 #ifdef ENABLE_DEBUGGER_SUPPORT 2450 #ifdef ENABLE_DEBUGGER_SUPPORT
2450 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex) 2451 ACCESSORS(DebugInfo, shared, SharedFunctionInfo, kSharedFunctionInfoIndex)
2451 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex) 2452 ACCESSORS(DebugInfo, original_code, Code, kOriginalCodeIndex)
2452 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) 2453 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex)
2453 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) 2454 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex)
2454 2455
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
3102 #undef WRITE_INT_FIELD 3103 #undef WRITE_INT_FIELD
3103 #undef READ_SHORT_FIELD 3104 #undef READ_SHORT_FIELD
3104 #undef WRITE_SHORT_FIELD 3105 #undef WRITE_SHORT_FIELD
3105 #undef READ_BYTE_FIELD 3106 #undef READ_BYTE_FIELD
3106 #undef WRITE_BYTE_FIELD 3107 #undef WRITE_BYTE_FIELD
3107 3108
3108 3109
3109 } } // namespace v8::internal 3110 } } // namespace v8::internal
3110 3111
3111 #endif // V8_OBJECTS_INL_H_ 3112 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698