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

Side by Side Diff: src/heap.cc

Issue 21087012: Simplify implementation of Mutex. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix unit test. Created 7 years, 4 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-agent.cc ('k') | src/isolate.h » ('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 6859 matching lines...) Expand 10 before | Expand all | Expand 10 after
6870 } else { 6870 } else {
6871 set_hash_seed(Smi::FromInt(FLAG_hash_seed)); 6871 set_hash_seed(Smi::FromInt(FLAG_hash_seed));
6872 } 6872 }
6873 } 6873 }
6874 6874
6875 LOG(isolate_, IntPtrTEvent("heap-capacity", Capacity())); 6875 LOG(isolate_, IntPtrTEvent("heap-capacity", Capacity()));
6876 LOG(isolate_, IntPtrTEvent("heap-available", Available())); 6876 LOG(isolate_, IntPtrTEvent("heap-available", Available()));
6877 6877
6878 store_buffer()->SetUp(); 6878 store_buffer()->SetUp();
6879 6879
6880 if (FLAG_parallel_recompilation) relocation_mutex_ = OS::CreateMutex(); 6880 if (FLAG_parallel_recompilation) relocation_mutex_ = new Mutex;
6881 #ifdef DEBUG 6881 #ifdef DEBUG
6882 relocation_mutex_locked_by_optimizer_thread_ = false; 6882 relocation_mutex_locked_by_optimizer_thread_ = false;
6883 #endif // DEBUG 6883 #endif // DEBUG
6884 6884
6885 return true; 6885 return true;
6886 } 6886 }
6887 6887
6888 6888
6889 bool Heap::CreateHeapObjects() { 6889 bool Heap::CreateHeapObjects() {
6890 // Create initial maps. 6890 // Create initial maps.
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
8029 if (FLAG_parallel_recompilation) { 8029 if (FLAG_parallel_recompilation) {
8030 heap_->relocation_mutex_->Lock(); 8030 heap_->relocation_mutex_->Lock();
8031 #ifdef DEBUG 8031 #ifdef DEBUG
8032 heap_->relocation_mutex_locked_by_optimizer_thread_ = 8032 heap_->relocation_mutex_locked_by_optimizer_thread_ =
8033 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); 8033 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread();
8034 #endif // DEBUG 8034 #endif // DEBUG
8035 } 8035 }
8036 } 8036 }
8037 8037
8038 } } // namespace v8::internal 8038 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/debug-agent.cc ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698