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

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

Issue 10543141: Enable lazy compilation for non-trivial outer contexts. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Ulan Degenbaev. Created 8 years, 6 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.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 3679 matching lines...) Expand 10 before | Expand all | Expand 10 after
3690 BOOL_GETTER(SharedFunctionInfo, 3690 BOOL_GETTER(SharedFunctionInfo,
3691 compiler_hints, 3691 compiler_hints,
3692 has_only_simple_this_property_assignments, 3692 has_only_simple_this_property_assignments,
3693 kHasOnlySimpleThisPropertyAssignments) 3693 kHasOnlySimpleThisPropertyAssignments)
3694 BOOL_ACCESSORS(SharedFunctionInfo, 3694 BOOL_ACCESSORS(SharedFunctionInfo,
3695 compiler_hints, 3695 compiler_hints,
3696 allows_lazy_compilation, 3696 allows_lazy_compilation,
3697 kAllowLazyCompilation) 3697 kAllowLazyCompilation)
3698 BOOL_ACCESSORS(SharedFunctionInfo, 3698 BOOL_ACCESSORS(SharedFunctionInfo,
3699 compiler_hints, 3699 compiler_hints,
3700 allows_lazy_compilation_without_context,
3701 kAllowLazyCompilationWithoutContext)
3702 BOOL_ACCESSORS(SharedFunctionInfo,
3703 compiler_hints,
3700 uses_arguments, 3704 uses_arguments,
3701 kUsesArguments) 3705 kUsesArguments)
3702 BOOL_ACCESSORS(SharedFunctionInfo, 3706 BOOL_ACCESSORS(SharedFunctionInfo,
3703 compiler_hints, 3707 compiler_hints,
3704 has_duplicate_parameters, 3708 has_duplicate_parameters,
3705 kHasDuplicateParameters) 3709 kHasDuplicateParameters)
3706 3710
3707 3711
3708 #if V8_HOST_ARCH_32_BIT 3712 #if V8_HOST_ARCH_32_BIT
3709 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset) 3713 SMI_ACCESSORS(SharedFunctionInfo, length, kLengthOffset)
(...skipping 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after
5179 #undef WRITE_UINT32_FIELD 5183 #undef WRITE_UINT32_FIELD
5180 #undef READ_SHORT_FIELD 5184 #undef READ_SHORT_FIELD
5181 #undef WRITE_SHORT_FIELD 5185 #undef WRITE_SHORT_FIELD
5182 #undef READ_BYTE_FIELD 5186 #undef READ_BYTE_FIELD
5183 #undef WRITE_BYTE_FIELD 5187 #undef WRITE_BYTE_FIELD
5184 5188
5185 5189
5186 } } // namespace v8::internal 5190 } } // namespace v8::internal
5187 5191
5188 #endif // V8_OBJECTS_INL_H_ 5192 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698