| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1233 Handle<JSFunction> delegate = | 1233 Handle<JSFunction> delegate = |
| 1234 factory->NewFunction(factory->empty_symbol(), JS_OBJECT_TYPE, | 1234 factory->NewFunction(factory->empty_symbol(), JS_OBJECT_TYPE, |
| 1235 JSObject::kHeaderSize, code, true); | 1235 JSObject::kHeaderSize, code, true); |
| 1236 native_context()->set_call_as_constructor_delegate(*delegate); | 1236 native_context()->set_call_as_constructor_delegate(*delegate); |
| 1237 delegate->shared()->DontAdaptArguments(); | 1237 delegate->shared()->DontAdaptArguments(); |
| 1238 } | 1238 } |
| 1239 | 1239 |
| 1240 // Initialize the out of memory slot. | 1240 // Initialize the out of memory slot. |
| 1241 native_context()->set_out_of_memory(heap->false_value()); | 1241 native_context()->set_out_of_memory(heap->false_value()); |
| 1242 | 1242 |
| 1243 // Initialize the embedder data slot. | 1243 // Initialize the data slot. |
| 1244 Handle<FixedArray> embedder_data = factory->NewFixedArray(2); | 1244 native_context()->set_data(heap->undefined_value()); |
| 1245 native_context()->set_embedder_data(*embedder_data); | |
| 1246 | 1245 |
| 1247 { | 1246 { |
| 1248 // Initialize the random seed slot. | 1247 // Initialize the random seed slot. |
| 1249 Handle<ByteArray> zeroed_byte_array( | 1248 Handle<ByteArray> zeroed_byte_array( |
| 1250 factory->NewByteArray(kRandomStateSize)); | 1249 factory->NewByteArray(kRandomStateSize)); |
| 1251 native_context()->set_random_seed(*zeroed_byte_array); | 1250 native_context()->set_random_seed(*zeroed_byte_array); |
| 1252 memset(zeroed_byte_array->GetDataStartAddress(), 0, kRandomStateSize); | 1251 memset(zeroed_byte_array->GetDataStartAddress(), 0, kRandomStateSize); |
| 1253 } | 1252 } |
| 1254 return true; | 1253 return true; |
| 1255 } | 1254 } |
| (...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2410 return from + sizeof(NestingCounterType); | 2409 return from + sizeof(NestingCounterType); |
| 2411 } | 2410 } |
| 2412 | 2411 |
| 2413 | 2412 |
| 2414 // Called when the top-level V8 mutex is destroyed. | 2413 // Called when the top-level V8 mutex is destroyed. |
| 2415 void Bootstrapper::FreeThreadResources() { | 2414 void Bootstrapper::FreeThreadResources() { |
| 2416 ASSERT(!IsActive()); | 2415 ASSERT(!IsActive()); |
| 2417 } | 2416 } |
| 2418 | 2417 |
| 2419 } } // namespace v8::internal | 2418 } } // namespace v8::internal |
| OLD | NEW |