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

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

Issue 641643006: Always include full reloc info to stubs for serialization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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.h ('k') | src/serialize.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Review notes: 5 // Review notes:
6 // 6 //
7 // - The use of macros in these inline functions may seem superfluous 7 // - The use of macros in these inline functions may seem superfluous
8 // but it is absolutely needed to make sure gcc generates optimal 8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep. 9 // code. gcc is not happy when attempting to inline too deep.
10 // 10 //
(...skipping 5447 matching lines...) Expand 10 before | Expand all | Expand 10 after
5458 kAllowLazyCompilationWithoutContext) 5458 kAllowLazyCompilationWithoutContext)
5459 BOOL_ACCESSORS(SharedFunctionInfo, 5459 BOOL_ACCESSORS(SharedFunctionInfo,
5460 compiler_hints, 5460 compiler_hints,
5461 uses_arguments, 5461 uses_arguments,
5462 kUsesArguments) 5462 kUsesArguments)
5463 BOOL_ACCESSORS(SharedFunctionInfo, 5463 BOOL_ACCESSORS(SharedFunctionInfo,
5464 compiler_hints, 5464 compiler_hints,
5465 has_duplicate_parameters, 5465 has_duplicate_parameters,
5466 kHasDuplicateParameters) 5466 kHasDuplicateParameters)
5467 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, asm_function, kIsAsmFunction) 5467 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, asm_function, kIsAsmFunction)
5468 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, deserialized, kDeserialized)
5468 5469
5469 5470
5470 #if V8_HOST_ARCH_32_BIT 5471 #if V8_HOST_ARCH_32_BIT
5471 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 5472 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
5472 SMI_ACCESSORS(SharedFunctionInfo, formal_parameter_count, 5473 SMI_ACCESSORS(SharedFunctionInfo, formal_parameter_count,
5473 kFormalParameterCountOffset) 5474 kFormalParameterCountOffset)
5474 SMI_ACCESSORS(SharedFunctionInfo, expected_nof_properties, 5475 SMI_ACCESSORS(SharedFunctionInfo, expected_nof_properties,
5475 kExpectedNofPropertiesOffset) 5476 kExpectedNofPropertiesOffset)
5476 SMI_ACCESSORS(SharedFunctionInfo, num_literals, kNumLiteralsOffset) 5477 SMI_ACCESSORS(SharedFunctionInfo, num_literals, kNumLiteralsOffset)
5477 SMI_ACCESSORS(SharedFunctionInfo, start_position_and_type, 5478 SMI_ACCESSORS(SharedFunctionInfo, start_position_and_type,
(...skipping 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after
7257 #undef READ_SHORT_FIELD 7258 #undef READ_SHORT_FIELD
7258 #undef WRITE_SHORT_FIELD 7259 #undef WRITE_SHORT_FIELD
7259 #undef READ_BYTE_FIELD 7260 #undef READ_BYTE_FIELD
7260 #undef WRITE_BYTE_FIELD 7261 #undef WRITE_BYTE_FIELD
7261 #undef NOBARRIER_READ_BYTE_FIELD 7262 #undef NOBARRIER_READ_BYTE_FIELD
7262 #undef NOBARRIER_WRITE_BYTE_FIELD 7263 #undef NOBARRIER_WRITE_BYTE_FIELD
7263 7264
7264 } } // namespace v8::internal 7265 } } // namespace v8::internal
7265 7266
7266 #endif // V8_OBJECTS_INL_H_ 7267 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698