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

Side by Side Diff: src/compiler.cc

Issue 14262004: Generator objects have [[Class]] === "Generator" (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Generator object methods check class of receiver Created 7 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
« no previous file with comments | « no previous file | src/generator.js » ('j') | src/generator.js » ('J')
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 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 lit->AllowsLazyCompilationWithoutContext()); 1116 lit->AllowsLazyCompilationWithoutContext());
1117 function_info->set_language_mode(lit->language_mode()); 1117 function_info->set_language_mode(lit->language_mode());
1118 function_info->set_uses_arguments(lit->scope()->arguments() != NULL); 1118 function_info->set_uses_arguments(lit->scope()->arguments() != NULL);
1119 function_info->set_has_duplicate_parameters(lit->has_duplicate_parameters()); 1119 function_info->set_has_duplicate_parameters(lit->has_duplicate_parameters());
1120 function_info->set_ast_node_count(lit->ast_node_count()); 1120 function_info->set_ast_node_count(lit->ast_node_count());
1121 function_info->set_is_function(lit->is_function()); 1121 function_info->set_is_function(lit->is_function());
1122 function_info->set_dont_optimize(lit->flags()->Contains(kDontOptimize)); 1122 function_info->set_dont_optimize(lit->flags()->Contains(kDontOptimize));
1123 function_info->set_dont_inline(lit->flags()->Contains(kDontInline)); 1123 function_info->set_dont_inline(lit->flags()->Contains(kDontInline));
1124 function_info->set_dont_cache(lit->flags()->Contains(kDontCache)); 1124 function_info->set_dont_cache(lit->flags()->Contains(kDontCache));
1125 function_info->set_is_generator(lit->is_generator()); 1125 function_info->set_is_generator(lit->is_generator());
1126 if (lit->is_generator()) {
Michael Starzinger 2013/04/17 12:52:19 Can we move this into Factory::NewSharedFunctionIn
wingo 2013/04/17 14:23:51 Done.
1127 String *class_name = function_info->GetHeap()->Generator_string();
1128 function_info->set_instance_class_name(class_name);
1129 }
1126 } 1130 }
1127 1131
1128 1132
1129 void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag, 1133 void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag,
1130 CompilationInfo* info, 1134 CompilationInfo* info,
1131 Handle<SharedFunctionInfo> shared) { 1135 Handle<SharedFunctionInfo> shared) {
1132 // SharedFunctionInfo is passed separately, because if CompilationInfo 1136 // SharedFunctionInfo is passed separately, because if CompilationInfo
1133 // was created using Script object, it will not have it. 1137 // was created using Script object, it will not have it.
1134 1138
1135 // Log the code generation. If source information is available include 1139 // Log the code generation. If source information is available include
(...skipping 23 matching lines...) Expand all
1159 } 1163 }
1160 } 1164 }
1161 1165
1162 GDBJIT(AddCode(Handle<String>(shared->DebugName()), 1166 GDBJIT(AddCode(Handle<String>(shared->DebugName()),
1163 Handle<Script>(info->script()), 1167 Handle<Script>(info->script()),
1164 Handle<Code>(info->code()), 1168 Handle<Code>(info->code()),
1165 info)); 1169 info));
1166 } 1170 }
1167 1171
1168 } } // namespace v8::internal 1172 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/generator.js » ('j') | src/generator.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698