OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexGuard
(Results
1 - 19
of
19
) sorted by null
/external/llvm/include/llvm/Support/
MutexGuard.h
1
//===-- Support/
MutexGuard
.h - Acquire/Release Mutex In Scope ---*- C++ -*-===//
27
class
MutexGuard
{
29
MutexGuard
(const
MutexGuard
&) = delete;
30
void operator=(const
MutexGuard
&) = delete;
32
MutexGuard
(sys::Mutex &m) : M(m) { M.lock(); }
33
~
MutexGuard
() { M.unlock(); }
/external/swiftshader/third_party/LLVM/include/llvm/Support/
MutexGuard.h
1
//===-- Support/
MutexGuard
.h - Acquire/Release Mutex In Scope ---*- C++ -*-===//
27
class
MutexGuard
{
29
MutexGuard
(const
MutexGuard
&); // DO NOT IMPLEMENT
30
void operator=(const
MutexGuard
&); // DO NOT IMPLEMENT
32
MutexGuard
(sys::Mutex &m) : M(m) { M.acquire(); }
33
~
MutexGuard
() { M.release(); }
/external/llvm/lib/Support/
ManagedStatic.cpp
17
#include "llvm/Support/
MutexGuard
.h"
42
MutexGuard
Lock(*getManagedStaticMutex());
84
MutexGuard
Lock(*getManagedStaticMutex());
ErrorHandling.cpp
25
#include "llvm/Support/
MutexGuard
.h"
50
llvm::
MutexGuard
Lock(*ErrorHandlerMutex);
57
llvm::
MutexGuard
Lock(*ErrorHandlerMutex);
80
llvm::
MutexGuard
Lock(*ErrorHandlerMutex);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp
32
#include "llvm/Support/
MutexGuard
.h"
235
MutexGuard
guard(Lock);
239
MutexGuard
guard(Lock);
243
MutexGuard
guard(Lock);
285
MutexGuard
locked(lock);
332
MutexGuard
locked(lock);
360
MutexGuard
locked(lock);
556
MutexGuard
locked(lock);
562
MutexGuard
locked(lock);
574
MutexGuard
locked(lock)
[
all
...]
JIT.h
42
FunctionPassManager &getPM(const
MutexGuard
&L) {
47
std::vector<AssertingVH<Function> > &getPendingFunctions(const
MutexGuard
&L){
206
getBasicBlockAddressMap(const
MutexGuard
&) {
214
void runJITOnFunctionUnlocked(Function *F, const
MutexGuard
&locked);
216
void jitTheFunction(Function *F, const
MutexGuard
&locked);
JITEmitter.cpp
42
#include "llvm/Support/
MutexGuard
.h"
121
const
MutexGuard
& locked) {
126
GlobalToIndirectSymMapTy& getGlobalToIndirectSymMap(const
MutexGuard
& lck) {
132
const
MutexGuard
&locked, void *CallSite) const {
146
void AddCallSite(const
MutexGuard
&locked, void *CallSite, Function *F) {
241
MutexGuard
guard(Lock);
246
MutexGuard
guard(Lock);
251
MutexGuard
guard(Lock);
264
MutexGuard
guard(Lock);
517
MutexGuard
locked(TheJIT->lock)
[
all
...]
JITDebugRegisterer.cpp
26
#include "llvm/Support/
MutexGuard
.h"
149
MutexGuard
locked(JITDebugLock);
171
MutexGuard
locked(JITDebugLock);
/external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp
28
#include "llvm/Support/
MutexGuard
.h"
96
MutexGuard
locked(lock);
108
MutexGuard
locked(lock);
117
MutexGuard
locked(lock);
144
MutexGuard
locked(lock);
149
MutexGuard
locked(lock);
187
MutexGuard
locked(lock);
236
MutexGuard
locked(lock);
252
MutexGuard
locked(lock);
267
MutexGuard
locked(lock)
[
all
...]
/external/llvm/lib/ExecutionEngine/
GDBRegistrationListener.cpp
17
#include "llvm/Support/
MutexGuard
.h"
148
llvm::
MutexGuard
locked(*JITDebugLock);
175
llvm::
MutexGuard
locked(*JITDebugLock);
195
llvm::
MutexGuard
locked(*JITDebugLock);
ExecutionEngine.cpp
35
#include "llvm/Support/
MutexGuard
.h"
192
MutexGuard
locked(lock);
205
MutexGuard
locked(lock);
210
MutexGuard
locked(lock);
229
MutexGuard
locked(lock);
236
MutexGuard
locked(lock);
244
MutexGuard
locked(lock);
249
MutexGuard
locked(lock);
276
MutexGuard
locked(lock);
287
MutexGuard
locked(lock)
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h
42
class
MutexGuard
;
77
GlobalAddressMapTy &getGlobalAddressMap(const
MutexGuard
&) {
82
getGlobalAddressReverseMap(const
MutexGuard
&) {
89
void *RemoveMapping(const
MutexGuard
&, const GlobalValue *ToUnmap);
/external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp
22
#include "llvm/Support/
MutexGuard
.h"
39
MutexGuard
Guard(Lock);
44
MutexGuard
Guard(Lock);
70
MutexGuard
Guard(Lock);
104
MutexGuard
Guard(Lock);
118
MutexGuard
Guard(Lock);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp
21
#include "llvm/Support/
MutexGuard
.h"
58
MutexGuard
Guard(OProfileInitializationMutex);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngine.cpp
26
#include "llvm/Support/
MutexGuard
.h"
142
void *ExecutionEngineState::RemoveMapping(const
MutexGuard
&,
161
MutexGuard
locked(lock);
179
MutexGuard
locked(lock);
186
MutexGuard
locked(lock);
196
MutexGuard
locked(lock);
223
MutexGuard
locked(lock);
231
MutexGuard
locked(lock);
507
MutexGuard
locked(lock);
[
all
...]
/external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h
47
class
MutexGuard
;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
24
#include "llvm/Support/
MutexGuard
.h"
120
MutexGuard
locked(lock);
154
MutexGuard
locked(lock);
175
MutexGuard
locked(lock);
[
all
...]
/external/clang/tools/libclang/
Indexing.cpp
33
#include "llvm/Support/
MutexGuard
.h"
139
llvm::
MutexGuard
MG(Mux);
144
llvm::
MutexGuard
MG(Mux);
[
all
...]
/external/clang/lib/Frontend/
ASTUnit.cpp
43
#include "llvm/Support/
MutexGuard
.h"
123
llvm::
MutexGuard
Guard(getOnDiskMutex());
134
llvm::
MutexGuard
Guard(getOnDiskMutex());
149
llvm::
MutexGuard
Guard(getOnDiskMutex());
[
all
...]
Completed in 883 milliseconds