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

Unified Diff: src/optimizing-compiler-thread.cc

Issue 632903003: Remove unnecessary isolate TLS from compiler jobs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updaes Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/optimizing-compiler-thread.cc
diff --git a/src/optimizing-compiler-thread.cc b/src/optimizing-compiler-thread.cc
index a5ab106405ac9b29dc469ffebbe5f2072dd953b4..ca1a1e6d0bcecf32af2a4839b50dd2d66e6909b7 100644
--- a/src/optimizing-compiler-thread.cc
+++ b/src/optimizing-compiler-thread.cc
@@ -25,7 +25,6 @@ class OptimizingCompilerThread::CompileTask : public v8::Task {
private:
// v8::Task overrides.
virtual void Run() OVERRIDE {
- Isolate::SetIsolateThreadLocals(isolate_, NULL);
DisallowHeapAllocation no_allocation;
DisallowHandleAllocation no_handles;
DisallowHandleDereference no_deref;
@@ -79,7 +78,6 @@ void OptimizingCompilerThread::Run() {
thread_id_ = ThreadId::Current().ToInteger();
}
#endif
- Isolate::SetIsolateThreadLocals(isolate_, NULL);
DisallowHeapAllocation no_allocation;
DisallowHandleAllocation no_handles;
DisallowHandleDereference no_deref;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698