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 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2006 Handle<Map> map; | 2006 Handle<Map> map; |
2007 if (target->IsCallable()) { | 2007 if (target->IsCallable()) { |
2008 if (target->IsConstructor()) { | 2008 if (target->IsConstructor()) { |
2009 map = Handle<Map>(isolate()->proxy_constructor_map()); | 2009 map = Handle<Map>(isolate()->proxy_constructor_map()); |
2010 } else { | 2010 } else { |
2011 map = Handle<Map>(isolate()->proxy_callable_map()); | 2011 map = Handle<Map>(isolate()->proxy_callable_map()); |
2012 } | 2012 } |
2013 } else { | 2013 } else { |
2014 map = Handle<Map>(isolate()->proxy_map()); | 2014 map = Handle<Map>(isolate()->proxy_map()); |
2015 } | 2015 } |
2016 DCHECK(map->prototype()->IsNull()); | 2016 DCHECK(map->prototype()->IsNull(isolate())); |
2017 Handle<JSProxy> result = New<JSProxy>(map, NEW_SPACE); | 2017 Handle<JSProxy> result = New<JSProxy>(map, NEW_SPACE); |
2018 result->initialize_properties(); | 2018 result->initialize_properties(); |
2019 result->set_target(*target); | 2019 result->set_target(*target); |
2020 result->set_handler(*handler); | 2020 result->set_handler(*handler); |
2021 result->set_hash(*undefined_value(), SKIP_WRITE_BARRIER); | 2021 result->set_hash(*undefined_value(), SKIP_WRITE_BARRIER); |
2022 return result; | 2022 return result; |
2023 } | 2023 } |
2024 | 2024 |
2025 | 2025 |
2026 Handle<JSGlobalProxy> Factory::NewUninitializedJSGlobalProxy() { | 2026 Handle<JSGlobalProxy> Factory::NewUninitializedJSGlobalProxy() { |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2395 } | 2395 } |
2396 | 2396 |
2397 | 2397 |
2398 Handle<Object> Factory::ToBoolean(bool value) { | 2398 Handle<Object> Factory::ToBoolean(bool value) { |
2399 return value ? true_value() : false_value(); | 2399 return value ? true_value() : false_value(); |
2400 } | 2400 } |
2401 | 2401 |
2402 | 2402 |
2403 } // namespace internal | 2403 } // namespace internal |
2404 } // namespace v8 | 2404 } // namespace v8 |
OLD | NEW |