OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 2355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2366 } | 2366 } |
2367 | 2367 |
2368 | 2368 |
2369 bool v8::V8::Dispose() { | 2369 bool v8::V8::Dispose() { |
2370 i::V8::TearDown(); | 2370 i::V8::TearDown(); |
2371 return true; | 2371 return true; |
2372 } | 2372 } |
2373 | 2373 |
2374 | 2374 |
2375 const char* v8::V8::GetVersion() { | 2375 const char* v8::V8::GetVersion() { |
2376 return "1.1.10.2"; | 2376 return "1.1.10.3"; |
2377 } | 2377 } |
2378 | 2378 |
2379 | 2379 |
2380 static i::Handle<i::FunctionTemplateInfo> | 2380 static i::Handle<i::FunctionTemplateInfo> |
2381 EnsureConstructor(i::Handle<i::ObjectTemplateInfo> templ) { | 2381 EnsureConstructor(i::Handle<i::ObjectTemplateInfo> templ) { |
2382 if (templ->constructor()->IsUndefined()) { | 2382 if (templ->constructor()->IsUndefined()) { |
2383 Local<FunctionTemplate> constructor = FunctionTemplate::New(); | 2383 Local<FunctionTemplate> constructor = FunctionTemplate::New(); |
2384 Utils::OpenHandle(*constructor)->set_instance_template(*templ); | 2384 Utils::OpenHandle(*constructor)->set_instance_template(*templ); |
2385 templ->set_constructor(*Utils::OpenHandle(*constructor)); | 2385 templ->set_constructor(*Utils::OpenHandle(*constructor)); |
2386 } | 2386 } |
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3339 reinterpret_cast<HandleScopeImplementer*>(storage); | 3339 reinterpret_cast<HandleScopeImplementer*>(storage); |
3340 List<void**>* blocks_of_archived_thread = thread_local->Blocks(); | 3340 List<void**>* blocks_of_archived_thread = thread_local->Blocks(); |
3341 v8::ImplementationUtilities::HandleScopeData* handle_data_of_archived_thread = | 3341 v8::ImplementationUtilities::HandleScopeData* handle_data_of_archived_thread = |
3342 &thread_local->handle_scope_data_; | 3342 &thread_local->handle_scope_data_; |
3343 Iterate(v, blocks_of_archived_thread, handle_data_of_archived_thread); | 3343 Iterate(v, blocks_of_archived_thread, handle_data_of_archived_thread); |
3344 | 3344 |
3345 return storage + ArchiveSpacePerThread(); | 3345 return storage + ArchiveSpacePerThread(); |
3346 } | 3346 } |
3347 | 3347 |
3348 } } // namespace v8::internal | 3348 } } // namespace v8::internal |
OLD | NEW |