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/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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 script->set_name(heap->undefined_value()); | 837 script->set_name(heap->undefined_value()); |
838 script->set_id(isolate()->heap()->NextScriptId()); | 838 script->set_id(isolate()->heap()->NextScriptId()); |
839 script->set_line_offset(Smi::FromInt(0)); | 839 script->set_line_offset(Smi::FromInt(0)); |
840 script->set_column_offset(Smi::FromInt(0)); | 840 script->set_column_offset(Smi::FromInt(0)); |
841 script->set_context_data(heap->undefined_value()); | 841 script->set_context_data(heap->undefined_value()); |
842 script->set_type(Smi::FromInt(Script::TYPE_NORMAL)); | 842 script->set_type(Smi::FromInt(Script::TYPE_NORMAL)); |
843 script->set_wrapper(heap->undefined_value()); | 843 script->set_wrapper(heap->undefined_value()); |
844 script->set_line_ends(heap->undefined_value()); | 844 script->set_line_ends(heap->undefined_value()); |
845 script->set_eval_from_shared(heap->undefined_value()); | 845 script->set_eval_from_shared(heap->undefined_value()); |
846 script->set_eval_from_instructions_offset(Smi::FromInt(0)); | 846 script->set_eval_from_instructions_offset(Smi::FromInt(0)); |
| 847 script->set_shared_function_infos(Smi::FromInt(0)); |
847 script->set_flags(Smi::FromInt(0)); | 848 script->set_flags(Smi::FromInt(0)); |
848 | 849 |
849 return script; | 850 return script; |
850 } | 851 } |
851 | 852 |
852 | 853 |
853 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { | 854 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { |
854 CALL_HEAP_FUNCTION(isolate(), | 855 CALL_HEAP_FUNCTION(isolate(), |
855 isolate()->heap()->AllocateForeign(addr, pretenure), | 856 isolate()->heap()->AllocateForeign(addr, pretenure), |
856 Foreign); | 857 Foreign); |
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2429 } | 2430 } |
2430 | 2431 |
2431 | 2432 |
2432 Handle<Object> Factory::ToBoolean(bool value) { | 2433 Handle<Object> Factory::ToBoolean(bool value) { |
2433 return value ? true_value() : false_value(); | 2434 return value ? true_value() : false_value(); |
2434 } | 2435 } |
2435 | 2436 |
2436 | 2437 |
2437 } // namespace internal | 2438 } // namespace internal |
2438 } // namespace v8 | 2439 } // namespace v8 |
OLD | NEW |