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

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

Issue 6771045: Never use classic code generator. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments and fix testing Created 9 years, 8 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/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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2011 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
11 // with the distribution. 11 // with the distribution.
(...skipping 3037 matching lines...) Expand 10 before | Expand all | Expand 10 after
3049 kNeedsAccessCheckBit) 3049 kNeedsAccessCheckBit)
3050 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, 3050 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression,
3051 kIsExpressionBit) 3051 kIsExpressionBit)
3052 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, 3052 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel,
3053 kIsTopLevelBit) 3053 kIsTopLevelBit)
3054 BOOL_GETTER(SharedFunctionInfo, compiler_hints, 3054 BOOL_GETTER(SharedFunctionInfo, compiler_hints,
3055 has_only_simple_this_property_assignments, 3055 has_only_simple_this_property_assignments,
3056 kHasOnlySimpleThisPropertyAssignments) 3056 kHasOnlySimpleThisPropertyAssignments)
3057 BOOL_ACCESSORS(SharedFunctionInfo, 3057 BOOL_ACCESSORS(SharedFunctionInfo,
3058 compiler_hints, 3058 compiler_hints,
3059 try_full_codegen,
3060 kTryFullCodegen)
3061 BOOL_ACCESSORS(SharedFunctionInfo,
3062 compiler_hints,
3063 allows_lazy_compilation, 3059 allows_lazy_compilation,
3064 kAllowLazyCompilation) 3060 kAllowLazyCompilation)
3065 3061
3066 3062
3067 #if V8_HOST_ARCH_32_BIT 3063 #if V8_HOST_ARCH_32_BIT
3068 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 3064 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
3069 SMI_ACCESSORS(SharedFunctionInfo, formal_parameter_count, 3065 SMI_ACCESSORS(SharedFunctionInfo, formal_parameter_count,
3070 kFormalParameterCountOffset) 3066 kFormalParameterCountOffset)
3071 SMI_ACCESSORS(SharedFunctionInfo, expected_nof_properties, 3067 SMI_ACCESSORS(SharedFunctionInfo, expected_nof_properties,
3072 kExpectedNofPropertiesOffset) 3068 kExpectedNofPropertiesOffset)
(...skipping 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
4161 #undef WRITE_INT_FIELD 4157 #undef WRITE_INT_FIELD
4162 #undef READ_SHORT_FIELD 4158 #undef READ_SHORT_FIELD
4163 #undef WRITE_SHORT_FIELD 4159 #undef WRITE_SHORT_FIELD
4164 #undef READ_BYTE_FIELD 4160 #undef READ_BYTE_FIELD
4165 #undef WRITE_BYTE_FIELD 4161 #undef WRITE_BYTE_FIELD
4166 4162
4167 4163
4168 } } // namespace v8::internal 4164 } } // namespace v8::internal
4169 4165
4170 #endif // V8_OBJECTS_INL_H_ 4166 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698