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

Side by Side Diff: src/factory.cc

Issue 1292753007: [es6] Parameter scopes for sloppy eval (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments Created 5 years, 4 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 | « src/factory.h ('k') | src/full-codegen/full-codegen.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/factory.h" 5 #include "src/factory.h"
6 6
7 #include "src/allocation-site-scopes.h" 7 #include "src/allocation-site-scopes.h"
8 #include "src/base/bits.h" 8 #include "src/base/bits.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/conversions.h" 10 #include "src/conversions.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 Handle<PrototypeInfo> result = 55 Handle<PrototypeInfo> result =
56 Handle<PrototypeInfo>::cast(NewStruct(PROTOTYPE_INFO_TYPE)); 56 Handle<PrototypeInfo>::cast(NewStruct(PROTOTYPE_INFO_TYPE));
57 result->set_prototype_users(WeakFixedArray::Empty()); 57 result->set_prototype_users(WeakFixedArray::Empty());
58 result->set_registry_slot(PrototypeInfo::UNREGISTERED); 58 result->set_registry_slot(PrototypeInfo::UNREGISTERED);
59 result->set_validity_cell(Smi::FromInt(0)); 59 result->set_validity_cell(Smi::FromInt(0));
60 result->set_constructor_name(Smi::FromInt(0)); 60 result->set_constructor_name(Smi::FromInt(0));
61 return result; 61 return result;
62 } 62 }
63 63
64 64
65 Handle<SloppyBlockWithEvalContextExtension>
66 Factory::NewSloppyBlockWithEvalContextExtension(
67 Handle<ScopeInfo> scope_info, Handle<JSObject> extension) {
68 DCHECK(scope_info->is_declaration_scope());
69 Handle<SloppyBlockWithEvalContextExtension> result =
70 Handle<SloppyBlockWithEvalContextExtension>::cast(
71 NewStruct(SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE));
72 result->set_scope_info(*scope_info);
73 result->set_extension(*extension);
74 return result;
75 }
76
77
65 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string, 78 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string,
66 Handle<Object> to_number, 79 Handle<Object> to_number,
67 const char* type_of, byte kind) { 80 const char* type_of, byte kind) {
68 Handle<Oddball> oddball = New<Oddball>(map, OLD_SPACE); 81 Handle<Oddball> oddball = New<Oddball>(map, OLD_SPACE);
69 Oddball::Initialize(isolate(), oddball, to_string, to_number, type_of, kind); 82 Oddball::Initialize(isolate(), oddball, to_string, to_number, type_of, kind);
70 return oddball; 83 return oddball;
71 } 84 }
72 85
73 86
74 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) { 87 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
(...skipping 2243 matching lines...) Expand 10 before | Expand all | Expand 10 after
2318 } 2331 }
2319 2332
2320 2333
2321 Handle<Object> Factory::ToBoolean(bool value) { 2334 Handle<Object> Factory::ToBoolean(bool value) {
2322 return value ? true_value() : false_value(); 2335 return value ? true_value() : false_value();
2323 } 2336 }
2324 2337
2325 2338
2326 } // namespace internal 2339 } // namespace internal
2327 } // namespace v8 2340 } // namespace v8
OLDNEW
« no previous file with comments | « src/factory.h ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698