Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: src/handles.cc

Issue 15817014: remove most uses of raw handle constructors (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: stupid cast needed Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/debug.cc ('k') | src/log.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 340
341 // Wrappers for scripts are kept alive and cached in weak global 341 // Wrappers for scripts are kept alive and cached in weak global
342 // handles referred from foreign objects held by the scripts as long as 342 // handles referred from foreign objects held by the scripts as long as
343 // they are used. When they are not used anymore, the garbage 343 // they are used. When they are not used anymore, the garbage
344 // collector will call the weak callback on the global handle 344 // collector will call the weak callback on the global handle
345 // associated with the wrapper and get rid of both the wrapper and the 345 // associated with the wrapper and get rid of both the wrapper and the
346 // handle. 346 // handle.
347 static void ClearWrapperCache(v8::Isolate* v8_isolate, 347 static void ClearWrapperCache(v8::Isolate* v8_isolate,
348 Persistent<v8::Value>* handle, 348 Persistent<v8::Value>* handle,
349 void*) { 349 void*) {
350 Handle<Object> cache = Utils::OpenHandle(**handle); 350 Handle<Object> cache = Utils::OpenPersistent(handle);
351 JSValue* wrapper = JSValue::cast(*cache); 351 JSValue* wrapper = JSValue::cast(*cache);
352 Foreign* foreign = Script::cast(wrapper->value())->wrapper(); 352 Foreign* foreign = Script::cast(wrapper->value())->wrapper();
353 ASSERT(foreign->foreign_address() == 353 ASSERT(foreign->foreign_address() ==
354 reinterpret_cast<Address>(cache.location())); 354 reinterpret_cast<Address>(cache.location()));
355 foreign->set_foreign_address(0); 355 foreign->set_foreign_address(0);
356 Isolate* isolate = reinterpret_cast<Isolate*>(v8_isolate); 356 Isolate* isolate = reinterpret_cast<Isolate*>(v8_isolate);
357 isolate->global_handles()->Destroy(cache.location()); 357 isolate->global_handles()->Destroy(cache.location());
358 isolate->counters()->script_wrappers()->Decrement(); 358 isolate->counters()->script_wrappers()->Decrement();
359 } 359 }
360 360
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 data->next = prev_next_; 927 data->next = prev_next_;
928 data->limit = prev_limit_; 928 data->limit = prev_limit_;
929 #ifdef DEBUG 929 #ifdef DEBUG
930 handles_detached_ = true; 930 handles_detached_ = true;
931 #endif 931 #endif
932 return deferred; 932 return deferred;
933 } 933 }
934 934
935 935
936 } } // namespace v8::internal 936 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/debug.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698