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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 script->set_source(*source); | 886 script->set_source(*source); |
887 script->set_name(heap->undefined_value()); | 887 script->set_name(heap->undefined_value()); |
888 script->set_id(isolate()->heap()->NextScriptId()); | 888 script->set_id(isolate()->heap()->NextScriptId()); |
889 script->set_line_offset(0); | 889 script->set_line_offset(0); |
890 script->set_column_offset(0); | 890 script->set_column_offset(0); |
891 script->set_context_data(heap->undefined_value()); | 891 script->set_context_data(heap->undefined_value()); |
892 script->set_type(Script::TYPE_NORMAL); | 892 script->set_type(Script::TYPE_NORMAL); |
893 script->set_wrapper(heap->undefined_value()); | 893 script->set_wrapper(heap->undefined_value()); |
894 script->set_line_ends(heap->undefined_value()); | 894 script->set_line_ends(heap->undefined_value()); |
895 script->set_eval_from_shared(heap->undefined_value()); | 895 script->set_eval_from_shared(heap->undefined_value()); |
896 script->set_eval_from_position(0); | 896 script->set_eval_from_instructions_offset(0); |
897 script->set_shared_function_infos(Smi::FromInt(0)); | 897 script->set_shared_function_infos(Smi::FromInt(0)); |
898 script->set_flags(0); | 898 script->set_flags(0); |
899 | 899 |
900 heap->set_script_list(*WeakFixedArray::Add(script_list(), script)); | 900 heap->set_script_list(*WeakFixedArray::Add(script_list(), script)); |
901 return script; | 901 return script; |
902 } | 902 } |
903 | 903 |
904 | 904 |
905 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { | 905 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { |
906 CALL_HEAP_FUNCTION(isolate(), | 906 CALL_HEAP_FUNCTION(isolate(), |
(...skipping 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2371 } | 2371 } |
2372 | 2372 |
2373 | 2373 |
2374 Handle<Object> Factory::ToBoolean(bool value) { | 2374 Handle<Object> Factory::ToBoolean(bool value) { |
2375 return value ? true_value() : false_value(); | 2375 return value ? true_value() : false_value(); |
2376 } | 2376 } |
2377 | 2377 |
2378 | 2378 |
2379 } // namespace internal | 2379 } // namespace internal |
2380 } // namespace v8 | 2380 } // namespace v8 |
OLD | NEW |