| OLD | NEW |
| 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/accessors.h" | 7 #include "src/accessors.h" |
| 8 #include "src/allocation-site-scopes.h" | 8 #include "src/allocation-site-scopes.h" |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
| (...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1757 int requested_modules_length = module_info->module_requests()->length(); | 1757 int requested_modules_length = module_info->module_requests()->length(); |
| 1758 Handle<FixedArray> requested_modules = | 1758 Handle<FixedArray> requested_modules = |
| 1759 requested_modules_length > 0 ? NewFixedArray(requested_modules_length) | 1759 requested_modules_length > 0 ? NewFixedArray(requested_modules_length) |
| 1760 : empty_fixed_array(); | 1760 : empty_fixed_array(); |
| 1761 | 1761 |
| 1762 Handle<Module> module = Handle<Module>::cast(NewStruct(MODULE_TYPE)); | 1762 Handle<Module> module = Handle<Module>::cast(NewStruct(MODULE_TYPE)); |
| 1763 module->set_code(*code); | 1763 module->set_code(*code); |
| 1764 module->set_exports(*exports); | 1764 module->set_exports(*exports); |
| 1765 module->set_requested_modules(*requested_modules); | 1765 module->set_requested_modules(*requested_modules); |
| 1766 module->set_flags(0); | 1766 module->set_flags(0); |
| 1767 module->set_embedder_data(isolate()->heap()->undefined_value()); |
| 1767 return module; | 1768 return module; |
| 1768 } | 1769 } |
| 1769 | 1770 |
| 1770 Handle<JSArrayBuffer> Factory::NewJSArrayBuffer(SharedFlag shared, | 1771 Handle<JSArrayBuffer> Factory::NewJSArrayBuffer(SharedFlag shared, |
| 1771 PretenureFlag pretenure) { | 1772 PretenureFlag pretenure) { |
| 1772 Handle<JSFunction> array_buffer_fun( | 1773 Handle<JSFunction> array_buffer_fun( |
| 1773 shared == SharedFlag::kShared | 1774 shared == SharedFlag::kShared |
| 1774 ? isolate()->native_context()->shared_array_buffer_fun() | 1775 ? isolate()->native_context()->shared_array_buffer_fun() |
| 1775 : isolate()->native_context()->array_buffer_fun()); | 1776 : isolate()->native_context()->array_buffer_fun()); |
| 1776 CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateJSObject( | 1777 CALL_HEAP_FUNCTION(isolate(), isolate()->heap()->AllocateJSObject( |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2598 Handle<AccessorInfo> prototype = | 2599 Handle<AccessorInfo> prototype = |
| 2599 Accessors::FunctionPrototypeInfo(isolate(), attribs); | 2600 Accessors::FunctionPrototypeInfo(isolate(), attribs); |
| 2600 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())), | 2601 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())), |
| 2601 prototype, attribs); | 2602 prototype, attribs); |
| 2602 map->AppendDescriptor(&d); | 2603 map->AppendDescriptor(&d); |
| 2603 } | 2604 } |
| 2604 } | 2605 } |
| 2605 | 2606 |
| 2606 } // namespace internal | 2607 } // namespace internal |
| 2607 } // namespace v8 | 2608 } // namespace v8 |
| OLD | NEW |