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

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

Issue 390012: Push bleeding_edge revision 3267 to trunk.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
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/parser.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 2515 matching lines...) Expand 10 before | Expand all | Expand 10 after
2526 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype, 2526 BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype,
2527 kHiddenPrototypeBit) 2527 kHiddenPrototypeBit)
2528 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit) 2528 BOOL_ACCESSORS(FunctionTemplateInfo, flag, undetectable, kUndetectableBit)
2529 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check, 2529 BOOL_ACCESSORS(FunctionTemplateInfo, flag, needs_access_check,
2530 kNeedsAccessCheckBit) 2530 kNeedsAccessCheckBit)
2531 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, 2531 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression,
2532 kIsExpressionBit) 2532 kIsExpressionBit)
2533 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, 2533 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel,
2534 kIsTopLevelBit) 2534 kIsTopLevelBit)
2535 BOOL_GETTER(SharedFunctionInfo, compiler_hints, 2535 BOOL_GETTER(SharedFunctionInfo, compiler_hints,
2536 has_only_this_property_assignments,
2537 kHasOnlyThisPropertyAssignments)
2538 BOOL_GETTER(SharedFunctionInfo, compiler_hints,
2539 has_only_simple_this_property_assignments, 2536 has_only_simple_this_property_assignments,
2540 kHasOnlySimpleThisPropertyAssignments) 2537 kHasOnlySimpleThisPropertyAssignments)
2541 2538
2542 2539
2543 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 2540 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
2544 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count, 2541 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count,
2545 kFormalParameterCountOffset) 2542 kFormalParameterCountOffset)
2546 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties, 2543 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties,
2547 kExpectedNofPropertiesOffset) 2544 kExpectedNofPropertiesOffset)
2548 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type, 2545 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type,
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
3152 #undef WRITE_INT_FIELD 3149 #undef WRITE_INT_FIELD
3153 #undef READ_SHORT_FIELD 3150 #undef READ_SHORT_FIELD
3154 #undef WRITE_SHORT_FIELD 3151 #undef WRITE_SHORT_FIELD
3155 #undef READ_BYTE_FIELD 3152 #undef READ_BYTE_FIELD
3156 #undef WRITE_BYTE_FIELD 3153 #undef WRITE_BYTE_FIELD
3157 3154
3158 3155
3159 } } // namespace v8::internal 3156 } } // namespace v8::internal
3160 3157
3161 #endif // V8_OBJECTS_INL_H_ 3158 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698