HomeSort by relevance Sort by last modified time
    Searched refs:ManagedStatic (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/llvm/lib/DebugInfo/CodeView/
CodeViewError.cpp 12 #include "llvm/Support/ManagedStatic.h"
42 static ManagedStatic<CodeViewErrorCategory> Category;
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAError.cpp 3 #include "llvm/Support/ManagedStatic.h"
35 static ManagedStatic<DIAErrorCategory> Category;
  /external/llvm/lib/DebugInfo/PDB/
GenericError.cpp 12 #include "llvm/Support/ManagedStatic.h"
42 static ManagedStatic<GenericErrorCategory> Category;
  /external/llvm/lib/DebugInfo/PDB/Raw/
RawError.cpp 3 #include "llvm/Support/ManagedStatic.h"
43 static ManagedStatic<RawErrorCategory> Category;
  /external/llvm/lib/Object/
Error.cpp 16 #include "llvm/Support/ManagedStatic.h"
72 static ManagedStatic<_object_error_category> error_category;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ManagedStatic.h 1 //===-- llvm/Support/ManagedStatic.h - Static Global wrapper ----*- C++ -*-===//
10 // This file defines the ManagedStatic class and the llvm_shutdown() function.
22 /// object_creator - Helper method for ManagedStatic.
28 /// object_deleter - Helper method for ManagedStatic.
37 /// ManagedStaticBase - Common base class for ManagedStatic instances.
54 /// ManagedStatic - This transparently changes the behavior of global statics to
60 class ManagedStatic : public ManagedStaticBase {
94 /// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 17 #include "llvm/Support/ManagedStatic.h"
37 static ManagedStatic<std::string> LibSupportInfoOutputFilename;
42 static ManagedStatic<sys::SmartMutex<true> > TimerLock;
147 static ManagedStatic<std::vector<Timer*> > ActiveTimers;
227 static ManagedStatic<Name2TimerMap> NamedTimers;
228 static ManagedStatic<Name2PairMap> NamedGroupedTimers;
  /external/llvm/lib/ExecutionEngine/
GDBRegistrationListener.cpp 15 #include "llvm/Support/ManagedStatic.h"
128 ManagedStatic<sys::Mutex> JITDebugLock;
237 llvm::ManagedStatic<GDBJITRegistrationListener> GDBRegListener;
  /external/llvm/lib/Support/
Statistic.cpp 30 #include "llvm/Support/ManagedStatic.h"
50 /// StatisticInfo - This class is used in a ManagedStatic so that it is created
70 static ManagedStatic<StatisticInfo> StatInfo;
71 static ManagedStatic<sys::SmartMutex<true> > StatLock;
Debug.cpp 28 #include "llvm/Support/ManagedStatic.h"
44 static ManagedStatic<std::vector<std::string>> CurrentDebugType;
Error.cpp 13 #include "llvm/Support/ManagedStatic.h"
47 static ManagedStatic<ErrorErrorCategory> ErrorErrorCat;
Timer.cpp 20 #include "llvm/Support/ManagedStatic.h"
34 static ManagedStatic<std::string> LibSupportInfoOutputFilename;
39 static ManagedStatic<sys::SmartMutex<true> > TimerLock;
213 static ManagedStatic<Name2TimerMap> NamedTimers;
214 static ManagedStatic<Name2PairMap> NamedGroupedTimers;
CrashRecoveryContext.cpp 13 #include "llvm/Support/ManagedStatic.h"
23 static ManagedStatic<
75 static ManagedStatic<sys::Mutex> gCrashRecoveryContextMutex;
78 static ManagedStatic<sys::ThreadLocal<const CrashRecoveryContext>>
Signals.cpp 22 #include "llvm/Support/ManagedStatic.h"
39 static ManagedStatic<std::vector<std::pair<void (*)(void *), void *>>>
  /frameworks/compile/mclinker/lib/Fragment/
FragmentRef.cpp 21 #include <llvm/Support/ManagedStatic.h>
29 static llvm::ManagedStatic<FragRefFactory> g_FragRefFactory;
  /external/clang/tools/diagtool/
DiagTool.cpp 67 llvm::ManagedStatic<DiagTools> diagTools;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PseudoSourceValue.cpp 19 #include "llvm/Support/ManagedStatic.h"
41 static ManagedStatic<PSVGlobalsTy> PSVGlobals;
  /external/llvm/lib/IR/
PassRegistry.cpp 17 #include "llvm/Support/ManagedStatic.h"
21 // FIXME: We use ManagedStatic to erase the pass registrar on shutdown.
26 static ManagedStatic<PassRegistry> PassRegistryObj;
  /external/llvm/lib/ProfileData/
SampleProf.cpp 17 #include "llvm/Support/ManagedStatic.h"
59 static ManagedStatic<SampleProfErrorCategoryType> ErrorCategory;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContext.cpp 19 #include "llvm/Support/ManagedStatic.h"
25 static ManagedStatic<LLVMContext> GlobalContext;
PassRegistry.cpp 18 #include "llvm/Support/ManagedStatic.h"
28 // FIXME: We use ManagedStatic to erase the pass registrar on shutdown.
33 static ManagedStatic<PassRegistry> PassRegistryObj;
38 static ManagedStatic<sys::SmartMutex<true> > Lock;
Attributes.cpp 21 #include "llvm/Support/ManagedStatic.h"
117 static ManagedStatic<FoldingSet<AttributeListImpl> > AttributesLists;
120 static ManagedStatic<sys::SmartMutex<true> > ALMutex;
  /frameworks/compile/mclinker/lib/Script/
ScriptFile.cpp 34 #include <llvm/Support/ManagedStatic.h>
45 static llvm::ManagedStatic<ParserStrPool> g_ParserStrPool;
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 29 #include "llvm/Support/ManagedStatic.h"
49 static ManagedStatic<sys::Mutex> FunctionsLock;
53 static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions;
58 static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions;
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 29 #include "llvm/Support/ManagedStatic.h"
50 static ManagedStatic<sys::Mutex> FunctionsLock;
53 static ManagedStatic<std::map<const Function *, ExFunc> > ExportedFunctions;
54 static ManagedStatic<std::map<std::string, ExFunc> > FuncNames;
58 static ManagedStatic<std::map<const Function *, RawFunc> > RawFunctions;

Completed in 1362 milliseconds

12 3 4