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

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

Issue 549158: Refactor the selection of code generator (toplevel or optimizing) and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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.h ('k') | src/x64/full-codegen-x64.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 2354 matching lines...) Expand 10 before | Expand all | Expand 10 after
2365 kNeedsAccessCheckBit) 2365 kNeedsAccessCheckBit)
2366 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, 2366 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression,
2367 kIsExpressionBit) 2367 kIsExpressionBit)
2368 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, 2368 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel,
2369 kIsTopLevelBit) 2369 kIsTopLevelBit)
2370 BOOL_GETTER(SharedFunctionInfo, compiler_hints, 2370 BOOL_GETTER(SharedFunctionInfo, compiler_hints,
2371 has_only_simple_this_property_assignments, 2371 has_only_simple_this_property_assignments,
2372 kHasOnlySimpleThisPropertyAssignments) 2372 kHasOnlySimpleThisPropertyAssignments)
2373 BOOL_ACCESSORS(SharedFunctionInfo, 2373 BOOL_ACCESSORS(SharedFunctionInfo,
2374 compiler_hints, 2374 compiler_hints,
2375 try_fast_codegen, 2375 try_full_codegen,
2376 kTryFastCodegen) 2376 kTryFullCodegen)
2377 2377
2378 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 2378 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
2379 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count, 2379 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count,
2380 kFormalParameterCountOffset) 2380 kFormalParameterCountOffset)
2381 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties, 2381 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties,
2382 kExpectedNofPropertiesOffset) 2382 kExpectedNofPropertiesOffset)
2383 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type, 2383 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type,
2384 kStartPositionAndTypeOffset) 2384 kStartPositionAndTypeOffset)
2385 INT_ACCESSORS(SharedFunctionInfo, end_position, kEndPositionOffset) 2385 INT_ACCESSORS(SharedFunctionInfo, end_position, kEndPositionOffset)
2386 INT_ACCESSORS(SharedFunctionInfo, function_token_position, 2386 INT_ACCESSORS(SharedFunctionInfo, function_token_position,
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
3035 #undef WRITE_INT_FIELD 3035 #undef WRITE_INT_FIELD
3036 #undef READ_SHORT_FIELD 3036 #undef READ_SHORT_FIELD
3037 #undef WRITE_SHORT_FIELD 3037 #undef WRITE_SHORT_FIELD
3038 #undef READ_BYTE_FIELD 3038 #undef READ_BYTE_FIELD
3039 #undef WRITE_BYTE_FIELD 3039 #undef WRITE_BYTE_FIELD
3040 3040
3041 3041
3042 } } // namespace v8::internal 3042 } } // namespace v8::internal
3043 3043
3044 #endif // V8_OBJECTS_INL_H_ 3044 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698