Searched refs:Instance (Results 1 - 25 of 160) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h25 void initLinkerInitialized(Allocator *Instance) { argument
26 Instance->initLinkerInitialized();
30 FallbackTSD->initLinkerInitialized(Instance);
33 void init(Allocator *Instance) { argument
35 initLinkerInitialized(Instance);
42 ALWAYS_INLINE void initThreadMaybe(Allocator *Instance, bool MinimalInit) { argument
45 initThread(Instance, MinimalInit);
75 void initOnceMaybe(Allocator *Instance) { argument
79 initLinkerInitialized(Instance); // Sets Initialized.
85 NOINLINE void initThread(Allocator *Instance, boo argument
114 Allocator *Instance = reinterpret_cast<Allocator *>(Ptr); local
[all...]
H A Dtsd.h31 void initLinkerInitialized(Allocator *Instance) { argument
32 Instance->initCache(&Cache);
35 void init(Allocator *Instance) { argument
37 initLinkerInitialized(Instance);
40 void commitBack(Allocator *Instance) { Instance->commitBack(this); } argument
H A Dtsd_shared.h18 void initLinkerInitialized(Allocator *Instance) { argument
19 Instance->initLinkerInitialized();
25 TSDs[I].initLinkerInitialized(Instance);
43 void init(Allocator *Instance) { argument
45 initLinkerInitialized(Instance);
55 ALWAYS_INLINE void initThreadMaybe(Allocator *Instance, argument
59 initThread(Instance);
108 void initOnceMaybe(Allocator *Instance) { argument
112 initLinkerInitialized(Instance); // Sets Initialized.
115 NOINLINE void initThread(Allocator *Instance) { argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCLabel.h25 unsigned Instance; member in class:llvm::MCLabel
30 MCLabel(unsigned instance) : Instance(instance) {}
37 unsigned getInstance() const { return Instance; }
40 unsigned incInstance() { return ++Instance; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp79 CompilerInstance Instance(CI.getPCHContainerOperations());
80 Instance.setInvocation(std::move(Invocation));
81 Instance.createDiagnostics(
85 Instance.getDiagnostics().setSourceManager(&SM);
89 Instance.setFileManager(&CI.getFileManager());
90 Instance.setSourceManager(&SM);
91 Instance.setPreprocessor(CI.getPreprocessorPtr());
92 Instance.setASTContext(&CI.getASTContext());
94 Instance.getPreprocessor().InitializeForModelFile();
100 CRC.RunSafelyOnThread([&]() { Instance
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp27 SourceManager &SM = Instance.getSourceManager();
63 FileID MainFileID = Instance.getSourceManager().getMainFileID();
65 Instance.getSourceManager().getFileEntryForID(MainFileID)->getName();
90 const FileEntry *ModuleMap = Instance.getPreprocessor()
100 MDC.Instance.getASTReader()->getModuleManager().lookup(M->getASTFile());
101 MDC.Instance.getASTReader()->visitInputFiles(
128 : Instance(I), Consumer(C), ContextHash(I.getInvocation().getModuleHash()) {
132 PP.addPPCallbacks(std::make_unique<ModuleDepCollectorPP>(Instance, *this));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp31 FileSystem &fs = FileSystem::Instance();
35 FileSystem::Instance().Resolve(exe_spec);
38 FileSystem::Instance().ResolveExecutableLocation(exe_spec);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp90 if (FileSystem::Instance().Exists(dsym_directory)) {
96 if (FileSystem::Instance().Exists(dsym_fspec) &&
112 if (FileSystem::Instance().Exists(dsym_fspec) &&
128 if (FileSystem::Instance().Exists(dsym_yaa_fspec)) {
131 FileSystem::Instance().Exists(mutable_mod_spec.GetSymbolFileSpec())) {
261 FileSystem::Instance().Exists(symbol_file_spec))
269 FileSystem::Instance().ResolveSymbolicLink(module_file_spec,
275 FileSystem::Instance().Resolve(file_spec);
284 FileSystem::Instance().Resolve(file_spec);
293 FileSystem::Instance()
[all...]
H A DLocateSymbolFileMacOSX.cpp111 FileSystem::Instance().Resolve(dsym_filespec);
113 if (FileSystem::Instance().IsDirectory(dsym_filespec)) {
155 FileSystem::Instance().Resolve(exec_filespec);
156 if (FileSystem::Instance().Exists(exec_filespec)) {
178 FileSystem::Instance().Resolve(file_spec);
194 FileSystem::Instance().Resolve(bundle_exe_file_spec);
320 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
335 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
416 FileSystem::Instance().Resolve(resolved_source_path);
464 FileSystem::Instance()
[all...]
H A DSymbolVendor.cpp49 module_sp, &sym_spec, 0, FileSystem::Instance().GetByteSize(sym_spec),
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h46 : Instance(I), MDC(MDC) {}
61 CompilerInstance &Instance; member in class:clang::tooling::dependencies::final
82 CompilerInstance &Instance; member in class:clang::tooling::dependencies::final
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp30 if (FileSystem::Instance().IsDirectory(clang_path))
75 FileSystem::Instance().Resolve(file_spec);
122 FileSystem::Instance().Resolve(file_spec);
137 FileSystem::Instance().Resolve(file_spec);
150 FileSystem::Instance().Resolve(file_spec);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp244 CompilerInstance Instance(CI.getPCHContainerOperations(),
246 Instance.setInvocation(
248 Instance.createDiagnostics(
251 Instance.getFrontendOpts().DisableFree = false;
252 Instance.getFrontendOpts().Inputs.clear();
253 Instance.getFrontendOpts().Inputs.emplace_back(
255 Instance.getFrontendOpts().ModuleFiles.clear();
256 Instance.getFrontendOpts().ModuleMapFiles.clear();
258 Instance.getPreprocessorOutputOpts().RewriteImports = false;
263 Instance
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp20 CompilerInstance &Instance; member in class:__anon513::InterfaceStubFunctionsConsumer
68 !Instance.getLangOpts().GNUInline)
118 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
232 Instance.getDiagnostics().Report(diag::err_asm_invalid_type_in_input)
238 InterfaceStubFunctionsConsumer(CompilerInstance &Instance, StringRef InFile, argument
240 : Instance(Instance), InFile(InFile), Format(Format) {}
268 auto OS = Instance.createDefaultOutputFile(/*Binary=*/false, InFile, "ifs");
272 if (Instance.getLangOpts().DelayedTemplateParsing) {
273 clang::Sema &S = Instance
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp78 FileSystem::Instance().Resolve(m_current_value);
110 const auto file_mod_time = FileSystem::Instance().GetModificationTime(m_current_value);
114 FileSystem::Instance().CreateDataBuffer(m_current_value.GetPath());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp665 static Allocator Instance(LINKER_INITIALIZED);
668 return Instance.Backend;
672 Instance.init();
688 Instance.commitBack(this);
694 if (Instance.canReturnNull())
698 return SetErrnoOnNull(Instance.allocate(Size, Alignment, Type));
702 Instance.deallocate(Ptr, Size, Alignment, Type);
707 return SetErrnoOnNull(Instance.allocate(Size, MinAlignment, FromMalloc));
709 Instance.deallocate(Ptr, 0, 0, FromMalloc);
712 return SetErrnoOnNull(Instance
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendAction.h39 CompilerInstance *Instance; member in class:clang::FrontendAction
116 /// @name Compiler Instance Access
120 assert(Instance && "Compiler instance not registered!");
121 return *Instance;
124 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp43 FileSystem::Instance().Resolve(*m_opaque_up);
51 FileSystem::Instance().Resolve(*m_opaque_up);
92 return FileSystem::Instance().Exists(*m_opaque_up);
98 return FileSystem::Instance().ResolveExecutableLocation(*m_opaque_up);
108 FileSystem::Instance().Resolve(result);
/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DDebugLib.h404 VOID *Instance; \
407 if (!EFI_ERROR (gBS->LocateProtocol ((EFI_GUID *)Guid, NULL, &Instance))) { \
411 if (!EFI_ERROR (gBS->HandleProtocol (Handle, (EFI_GUID *)Guid, &Instance))) { \
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp113 SVal Instance,
250 const CXXRecordDecl *AssertionResultDecl, SVal Instance,
262 State->getLValue(SuccessField, Instance).getAs<Loc>();
249 getAssertionResultSuccessFieldValue( const CXXRecordDecl *AssertionResultDecl, SVal Instance, ProgramStateRef State) const argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp92 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
104 module_sp, &dsym_fspec, 0, FileSystem::Instance().GetByteSize(dsym_fspec),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Initialization/
H A DSystemInitializerCommon.cpp72 auto &r = repro::Reproducer::Instance();
84 if (std::error_code ec = FileSystem::Instance()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h151 /// \return True if the map has a scalar entry for \p Key and \p Instance.
152 bool hasScalarValue(Value *Key, const VPIteration &Instance) const {
153 assert(Instance.Part < UF && "Queried Scalar Part is too large.");
154 assert(Instance.Lane < VF && "Queried Scalar Lane is too large.");
159 assert(Entry[Instance.Part].size() == VF &&
161 return Entry[Instance.Part][Instance.Lane] != nullptr;
172 /// \p Instance.
173 Value *getScalarValue(Value *Key, const VPIteration &Instance) {
174 assert(hasScalarValue(Key, Instance)
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbxface.c370 * Instance - Which instance (for SSDTs)
385 UINT32 Instance,
410 if (++j < Instance)
458 * Instance - Which instance (for SSDTs)
476 UINT32 Instance,
512 if (++j < Instance)
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Ddttemplate.c186 UINT32 Instance);
661 * Instance - Used for multiple SSDTs in the same file
678 UINT32 Instance)
690 Signature, Signature, Instance, Signature, Instance);
674 DtEmitDefinitionBlock( FILE *File, char *Filename, char *Signature, UINT32 Instance) argument

Completed in 273 milliseconds

1234567