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

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

Issue 341081: Begin using the top-level code generator for code that is inside... (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
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 2520 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 2536 has_only_this_property_assignments,
2537 kHasOnlyThisPropertyAssignments) 2537 kHasOnlyThisPropertyAssignments)
2538 BOOL_GETTER(SharedFunctionInfo, compiler_hints, 2538 BOOL_GETTER(SharedFunctionInfo, compiler_hints,
2539 has_only_simple_this_property_assignments, 2539 has_only_simple_this_property_assignments,
2540 kHasOnlySimpleThisPropertyAssignments) 2540 kHasOnlySimpleThisPropertyAssignments)
2541 2541 BOOL_ACCESSORS(SharedFunctionInfo,
2542 compiler_hints,
2543 try_fast_codegen,
2544 kTryFastCodegen)
2542 2545
2543 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 2546 INT_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
2544 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count, 2547 INT_ACCESSORS(SharedFunctionInfo, formal_parameter_count,
2545 kFormalParameterCountOffset) 2548 kFormalParameterCountOffset)
2546 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties, 2549 INT_ACCESSORS(SharedFunctionInfo, expected_nof_properties,
2547 kExpectedNofPropertiesOffset) 2550 kExpectedNofPropertiesOffset)
2548 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type, 2551 INT_ACCESSORS(SharedFunctionInfo, start_position_and_type,
2549 kStartPositionAndTypeOffset) 2552 kStartPositionAndTypeOffset)
2550 INT_ACCESSORS(SharedFunctionInfo, end_position, kEndPositionOffset) 2553 INT_ACCESSORS(SharedFunctionInfo, end_position, kEndPositionOffset)
2551 INT_ACCESSORS(SharedFunctionInfo, function_token_position, 2554 INT_ACCESSORS(SharedFunctionInfo, function_token_position,
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
3152 #undef WRITE_INT_FIELD 3155 #undef WRITE_INT_FIELD
3153 #undef READ_SHORT_FIELD 3156 #undef READ_SHORT_FIELD
3154 #undef WRITE_SHORT_FIELD 3157 #undef WRITE_SHORT_FIELD
3155 #undef READ_BYTE_FIELD 3158 #undef READ_BYTE_FIELD
3156 #undef WRITE_BYTE_FIELD 3159 #undef WRITE_BYTE_FIELD
3157 3160
3158 3161
3159 } } // namespace v8::internal 3162 } } // namespace v8::internal
3160 3163
3161 #endif // V8_OBJECTS_INL_H_ 3164 #endif // V8_OBJECTS_INL_H_
OLDNEW
« src/fast-codegen.cc ('K') | « src/objects.h ('k') | src/x64/fast-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698