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

Side by Side Diff: runtime/vm/virtual_memory_linux.cc

Issue 1710443003: Fix background compilation: allocate stubs at safepoint (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: d Created 4 years, 10 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" 5 #include "vm/globals.h"
6 #if defined(TARGET_OS_LINUX) 6 #if defined(TARGET_OS_LINUX)
7 7
8 #include "vm/virtual_memory.h" 8 #include "vm/virtual_memory.h"
9 9
10 #include <sys/mman.h> // NOLINT 10 #include <sys/mman.h> // NOLINT
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 MAP_PRIVATE | MAP_ANON | MAP_FIXED, 72 MAP_PRIVATE | MAP_ANON | MAP_FIXED,
73 -1, 0); 73 -1, 0);
74 if (address == MAP_FAILED) { 74 if (address == MAP_FAILED) {
75 return false; 75 return false;
76 } 76 }
77 return true; 77 return true;
78 } 78 }
79 79
80 80
81 bool VirtualMemory::Protect(void* address, intptr_t size, Protection mode) { 81 bool VirtualMemory::Protect(void* address, intptr_t size, Protection mode) {
82 ASSERT(Thread::Current()->IsMutatorThread() ||
83 Isolate::Current()->mutator_thread()->IsAtSafepoint());
82 uword start_address = reinterpret_cast<uword>(address); 84 uword start_address = reinterpret_cast<uword>(address);
83 uword end_address = start_address + size; 85 uword end_address = start_address + size;
84 uword page_address = Utils::RoundDown(start_address, PageSize()); 86 uword page_address = Utils::RoundDown(start_address, PageSize());
85 int prot = 0; 87 int prot = 0;
86 switch (mode) { 88 switch (mode) {
87 case kNoAccess: 89 case kNoAccess:
88 prot = PROT_NONE; 90 prot = PROT_NONE;
89 break; 91 break;
90 case kReadOnly: 92 case kReadOnly:
91 prot = PROT_READ; 93 prot = PROT_READ;
(...skipping 10 matching lines...) Expand all
102 } 104 }
103 return (mprotect(reinterpret_cast<void*>(page_address), 105 return (mprotect(reinterpret_cast<void*>(page_address),
104 end_address - page_address, 106 end_address - page_address,
105 prot) == 0); 107 prot) == 0);
106 } 108 }
107 109
108 110
109 } // namespace dart 111 } // namespace dart
110 112
111 #endif // defined(TARGET_OS_LINUX) 113 #endif // defined(TARGET_OS_LINUX)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698