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)); | |
848 script->set_flags(Smi::FromInt(0)); | 847 script->set_flags(Smi::FromInt(0)); |
849 | 848 |
850 return script; | 849 return script; |
851 } | 850 } |
852 | 851 |
853 | 852 |
854 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { | 853 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { |
855 CALL_HEAP_FUNCTION(isolate(), | 854 CALL_HEAP_FUNCTION(isolate(), |
856 isolate()->heap()->AllocateForeign(addr, pretenure), | 855 isolate()->heap()->AllocateForeign(addr, pretenure), |
857 Foreign); | 856 Foreign); |
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2192 share->set_internal_formal_parameter_count(0); | 2191 share->set_internal_formal_parameter_count(0); |
2193 share->set_expected_nof_properties(0); | 2192 share->set_expected_nof_properties(0); |
2194 share->set_num_literals(0); | 2193 share->set_num_literals(0); |
2195 share->set_start_position_and_type(0); | 2194 share->set_start_position_and_type(0); |
2196 share->set_end_position(0); | 2195 share->set_end_position(0); |
2197 share->set_function_token_position(0); | 2196 share->set_function_token_position(0); |
2198 // All compiler hints default to false or 0. | 2197 // All compiler hints default to false or 0. |
2199 share->set_compiler_hints(0); | 2198 share->set_compiler_hints(0); |
2200 share->set_opt_count_and_bailout_reason(0); | 2199 share->set_opt_count_and_bailout_reason(0); |
2201 | 2200 |
2202 share->set_never_compiled(!share->is_compiled()); | |
2203 return share; | 2201 return share; |
2204 } | 2202 } |
2205 | 2203 |
2206 | 2204 |
2207 static inline int NumberCacheHash(Handle<FixedArray> cache, | 2205 static inline int NumberCacheHash(Handle<FixedArray> cache, |
2208 Handle<Object> number) { | 2206 Handle<Object> number) { |
2209 int mask = (cache->length() >> 1) - 1; | 2207 int mask = (cache->length() >> 1) - 1; |
2210 if (number->IsSmi()) { | 2208 if (number->IsSmi()) { |
2211 return Handle<Smi>::cast(number)->value() & mask; | 2209 return Handle<Smi>::cast(number)->value() & mask; |
2212 } else { | 2210 } else { |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2432 } | 2430 } |
2433 | 2431 |
2434 | 2432 |
2435 Handle<Object> Factory::ToBoolean(bool value) { | 2433 Handle<Object> Factory::ToBoolean(bool value) { |
2436 return value ? true_value() : false_value(); | 2434 return value ? true_value() : false_value(); |
2437 } | 2435 } |
2438 | 2436 |
2439 | 2437 |
2440 } // namespace internal | 2438 } // namespace internal |
2441 } // namespace v8 | 2439 } // namespace v8 |
OLD | NEW |