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

Side by Side Diff: src/platform-openbsd.cc

Issue 6696042: Adding 'isolates' argument to LOG to get rid of multiple TLS fetches in profiling. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/isolates
Patch Set: Addressing code review feedback + rebase Created 9 years, 9 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/platform-macos.cc ('k') | src/platform-solaris.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 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 148
149 void* OS::Allocate(const size_t requested, 149 void* OS::Allocate(const size_t requested,
150 size_t* allocated, 150 size_t* allocated,
151 bool executable) { 151 bool executable) {
152 const size_t msize = RoundUp(requested, getpagesize()); 152 const size_t msize = RoundUp(requested, getpagesize());
153 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0); 153 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
154 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0); 154 void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
155 155
156 if (mbase == MAP_FAILED) { 156 if (mbase == MAP_FAILED) {
157 LOG(StringEvent("OS::Allocate", "mmap failed")); 157 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
158 return NULL; 158 return NULL;
159 } 159 }
160 *allocated = msize; 160 *allocated = msize;
161 UpdateAllocatedSpaceLimits(mbase, msize); 161 UpdateAllocatedSpaceLimits(mbase, msize);
162 return mbase; 162 return mbase;
163 } 163 }
164 164
165 165
166 void OS::Free(void* buf, const size_t length) { 166 void OS::Free(void* buf, const size_t length) {
167 int result = munmap(buf, length); 167 int result = munmap(buf, length);
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 } 654 }
655 655
656 // This sampler is no longer the active sampler. 656 // This sampler is no longer the active sampler.
657 active_sampler_ = NULL; 657 active_sampler_ = NULL;
658 active_ = false; 658 active_ = false;
659 } 659 }
660 660
661 #endif // ENABLE_LOGGING_AND_PROFILING 661 #endif // ENABLE_LOGGING_AND_PROFILING
662 662
663 } } // namespace v8::internal 663 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698