Home
last modified time | relevance | path

Searched refs:Instance (Results 1 – 25 of 209) sorted by relevance

123456789

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h55 void init(Allocator *Instance) REQUIRES(Mutex) { in init()
57 Instance->init(); in init()
59 FallbackTSD.init(Instance); in init()
63 void initOnceMaybe(Allocator *Instance) EXCLUDES(Mutex) { in initOnceMaybe()
67 init(Instance); // Sets Initialized. in initOnceMaybe()
70 void unmapTestOnly(Allocator *Instance) EXCLUDES(Mutex) { in unmapTestOnly()
71 DCHECK(Instance); in unmapTestOnly()
74 Instance); in unmapTestOnly()
75 ThreadTSD.commitBack(Instance); in unmapTestOnly()
80 FallbackTSD.commitBack(Instance); in unmapTestOnly()
[all …]
H A Dtsd_shared.h50 void init(Allocator *Instance) REQUIRES(Mutex) { in init()
52 Instance->init(); in init()
54 TSDs[I].init(Instance); in init()
61 void initOnceMaybe(Allocator *Instance) EXCLUDES(Mutex) { in initOnceMaybe()
65 init(Instance); // Sets Initialized. in initOnceMaybe()
68 void unmapTestOnly(Allocator *Instance) EXCLUDES(Mutex) { in unmapTestOnly()
70 TSDs[I].commitBack(Instance); in unmapTestOnly()
78 void drainCaches(Allocator *Instance) { in drainCaches()
82 Instance->drainCache(&TSDs[I]); in drainCaches()
87 ALWAYS_INLINE void initThreadMaybe(Allocator *Instance, in initThreadMaybe()
[all …]
H A Dtsd.h31 void init(Allocator *Instance) NO_THREAD_SAFETY_ANALYSIS { in init()
34 Instance->initAllocator(&SizeClassAllocator); in init()
56 void commitBack(Allocator *Instance) { Instance->commitBack(this); } in commitBack()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp76 CompilerInstance Instance(std::move(Invocation), in onBodySynthesis() local
78 Instance.createDiagnostics( in onBodySynthesis()
83 Instance.getDiagnostics().setSourceManager(&SM); in onBodySynthesis()
87 Instance.setFileManager(&CI.getFileManager()); in onBodySynthesis()
88 Instance.setSourceManager(&SM); in onBodySynthesis()
89 Instance.setPreprocessor(CI.getPreprocessorPtr()); in onBodySynthesis()
90 Instance.setASTContext(&CI.getASTContext()); in onBodySynthesis()
92 Instance.getPreprocessor().InitializeForModelFile(); in onBodySynthesis()
98 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()
101 Instance.getPreprocessor().FinalizeForModelFile(); in onBodySynthesis()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp102 FileSystem::Instance().Exists(symbol_file_spec)) in LocateExecutableSymbolFile()
114 FileSystem::Instance().ResolveSymbolicLink(module_file_spec, in LocateExecutableSymbolFile()
120 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
129 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
138 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
145 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
161 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
185 FileSystem::Instance().Resolve(dirspec); in LocateExecutableSymbolFile()
186 if (!FileSystem::Instance().IsDirectory(dirspec)) in LocateExecutableSymbolFile()
211 FileSystem::Instance().Resolve(file_spec); in LocateExecutableSymbolFile()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
H A DLocateSymbolFileMacOSX.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.cpp153 FileSystem::Instance().Resolve(dsym_filespec); in LocateExecutableObjectFile()
155 if (FileSystem::Instance().IsDirectory(dsym_filespec)) { in LocateExecutableObjectFile()
186 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LocateExecutableObjectFile()
235 FileSystem::Instance().Resolve(exec_filespec); in LocateExecutableObjectFile()
236 if (FileSystem::Instance().Exists(exec_filespec)) { in LocateExecutableObjectFile()
255 FileSystem::Instance().Resolve(file_spec); in LocateExecutableObjectFile()
271 FileSystem::Instance().Resolve(bundle_exe_file_spec); in LocateExecutableObjectFile()
337 FileSystem::Instance().GetVirtualFileSystem(); in FindSymbolFileInBundle()
408 if (FileSystem::Instance().Exists(dsym_directory)) { in LookForDsymNextToExecutablePath()
414 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h25 unsigned Instance; variable
30 MCLabel(unsigned instance) : Instance(instance) {} in MCLabel()
37 unsigned getInstance() const { return Instance; } in getInstance()
40 unsigned incInstance() { return ++Instance; } in incInstance()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendAction.h40 CompilerInstance *Instance; variable
121 assert(Instance && "Compiler instance not registered!"); in getCompilerInstance()
122 return *Instance; in getCompilerInstance()
125 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } in setCompilerInstance()
191 if (Instance && Instance->hasASTContext()) in getTranslationUnitKind()
192 return Instance->getASTContext().TUKind; in getTranslationUnitKind()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DUnwindInfoManager.cpp59 static std::unique_ptr<UnwindInfoManager> Instance; variable
78 if (Instance) in TryEnable()
89 Instance.reset(new UnwindInfoManager()); in TryEnable()
96 Instance = nullptr; in TryEnable()
118 return Instance->registerSectionsImpl(CodeRanges, DSOBase, DWARFEHFrame, in registerSections()
124 return Instance->deregisterSectionsImpl(CodeRanges); in deregisterSections()
138 return Instance->findSectionsImpl(Addr, Info); in findSections()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp21 CompilerInstance &Instance; member in __anonddb1d4dd0111::InterfaceStubFunctionsConsumer
70 !Instance.getLangOpts().GNUInline) in WriteNamedDecl()
120 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input) in WriteNamedDecl()
234 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input) in HandleNamedDecl()
240 InterfaceStubFunctionsConsumer(CompilerInstance &Instance, StringRef InFile, in InterfaceStubFunctionsConsumer() argument
242 : Instance(Instance), InFile(InFile), Format(Format) {} in InterfaceStubFunctionsConsumer()
270 auto OS = Instance.createDefaultOutputFile(/*Binary=*/false, InFile, "ifs"); in HandleTranslationUnit()
274 if (Instance.getLangOpts().DelayedTemplateParsing) { in HandleTranslationUnit()
275 clang::Sema &S = Instance.getSema(); in HandleTranslationUnit()
301 << (Symbol.ParentName.empty() || Instance.getLangOpts().CPlusPlus in HandleTranslationUnit()
[all …]
H A DCompilerInstance.cpp1211 auto &Instance = *InstancePtr; in cloneForModuleCompileImpl() local
1213 auto &Inv = Instance.getInvocation(); in cloneForModuleCompileImpl()
1216 Instance.createFileManager(ThreadSafeConfig->getVFS()); in cloneForModuleCompileImpl()
1218 Instance.setFileManager(&getFileManager()); in cloneForModuleCompileImpl()
1220 Instance.createFileManager(&getVirtualFileSystem()); in cloneForModuleCompileImpl()
1224 Instance.createDiagnostics(Instance.getVirtualFileSystem(), in cloneForModuleCompileImpl()
1228 Instance.createDiagnostics( in cloneForModuleCompileImpl()
1229 Instance.getVirtualFileSystem(), in cloneForModuleCompileImpl()
1234 Instance.getDiagnostics().setSuppressSystemWarnings(false); in cloneForModuleCompileImpl()
1236 Instance.createSourceManager(Instance.getFileManager()); in cloneForModuleCompileImpl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp244 CompilerInstance Instance( in visitModuleFile() local
247 Instance.createDiagnostics( in visitModuleFile()
251 Instance.getFrontendOpts().DisableFree = false; in visitModuleFile()
252 Instance.getFrontendOpts().Inputs.clear(); in visitModuleFile()
253 Instance.getFrontendOpts().Inputs.emplace_back( in visitModuleFile()
255 Instance.getFrontendOpts().ModuleFiles.clear(); in visitModuleFile()
256 Instance.getFrontendOpts().ModuleMapFiles.clear(); in visitModuleFile()
258 Instance.getPreprocessorOutputOpts().RewriteImports = false; in visitModuleFile()
263 Instance.ExecuteAction(Action); in visitModuleFile()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp43 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
51 FileSystem::Instance().Resolve(*m_opaque_up); in SBFileSpec()
89 return FileSystem::Instance().Exists(*m_opaque_up); in Exists()
95 return FileSystem::Instance().ResolveExecutableLocation(*m_opaque_up); in ResolveExecutableLocation()
103 FileSystem::Instance().Resolve(result); in ResolvePath()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp32 if (FileSystem::Instance().IsDirectory(clang_path)) in VerifyClangPath()
80 FileSystem::Instance().Resolve(file_spec); in DefaultComputeClangResourceDirectory()
128 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
143 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
154 FileSystem::Instance().Resolve(file_spec); in ComputeClangResourceDirectory()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.cpp67 {{SAs.Instance, rt::SimpleExecutorDylibManagerInstanceName}, in CreateWithDefaultBootstrapSymbols()
79 SAs.Open, H, SAs.Instance, Path, Mode)) in open()
99 SAs.Instance, H, Lookup); in lookupAsync()
117 SAs.Instance, H, Lookup); in lookupAsync()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp32 FileSystem &fs = FileSystem::Instance(); in LaunchProcess()
36 FileSystem::Instance().Resolve(exe_spec); in LaunchProcess()
39 FileSystem::Instance().ResolveExecutableLocation(exe_spec); in LaunchProcess()
/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DCodeGenData.cpp141 std::unique_ptr<CodeGenData> CodeGenData::Instance = nullptr; member in llvm::CodeGenData
146 Instance = std::unique_ptr<CodeGenData>(new CodeGenData()); in getInstance()
149 Instance->EmitCGData = true; in getInstance()
164 Instance->publishOutlinedHashTree(Reader->releaseOutlinedHashTree()); in getInstance()
166 Instance->publishStableFunctionMap(Reader->releaseStableFunctionMap()); in getInstance()
169 return *Instance; in getInstance()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp65 FileSystem::Instance().Resolve(m_current_value); in SetValueFromString()
93 const auto file_mod_time = FileSystem::Instance().GetModificationTime(m_current_value); in GetFileContents()
97 FileSystem::Instance().CreateDataBuffer(m_current_value.GetPath()); in GetFileContents()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp82 if (FileSystem::Instance().Exists(executable->GetFileSpec())) { in GetTargetExecutable()
232 if (FileSystem::Instance().Exists(name_filespec)) in LoadBinaryWithUUIDAndAddress()
256 if (FileSystem::Instance().Exists(module_spec.GetFileSpec()) && in LoadBinaryWithUUIDAndAddress()
257 FileSystem::Instance().Exists(module_spec.GetSymbolFileSpec())) { in LoadBinaryWithUUIDAndAddress()
271 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in LoadBinaryWithUUIDAndAddress()
280 if (!module_sp && FileSystem::Instance().Exists(module_spec.GetFileSpec())) in LoadBinaryWithUUIDAndAddress()
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dbrcm,spi-bcm-qspi.txt27 "brcm,spi-brcmstb-mspi", "brcm,spi-bcm-qspi" : Second Instance of MSPI
29 "brcm,spi-bcm7425-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
31 "brcm,spi-bcm7429-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
33 "brcm,spi-bcm7435-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
35 "brcm,spi-bcm7445-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
37 "brcm,spi-bcm7216-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
39 "brcm,spi-bcm7278-qspi", "brcm,spi-bcm-qspi", "brcm,spi-brcmstb-mspi" : Second Instance of MSPI
/freebsd/sys/contrib/dev/acpica/components/tables/
H A Dtbxface.c385 UINT32 Instance, in ACPI_EXPORT_SYMBOL_INIT()
410 if (++j < Instance) in ACPI_EXPORT_SYMBOL_INIT()
476 UINT32 Instance, in ACPI_EXPORT_SYMBOL()
512 if (++j < Instance) in ACPI_EXPORT_SYMBOL()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Ddttemplate.c186 UINT32 Instance);
689 UINT32 Instance) in DtEmitDefinitionBlock() argument
701 Signature, Signature, Instance, Signature, Instance); in DtEmitDefinitionBlock()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp54 module_sp, &file_spec, 0, FileSystem::Instance().GetByteSize(file_spec), in IsDwpSymbolFile()
102 FileSystem::Instance().Resolve(module_spec.GetFileSpec()); in CreateInstance()
126 module_sp, &dsym_fspec, 0, FileSystem::Instance().GetByteSize(dsym_fspec), in CreateInstance()

123456789