Home
last modified time | relevance | path

Searched refs:statics (Results 1 – 23 of 23) sorted by relevance

/llvm-project-15.0.7/clang/test/Driver/
H A Dthreadsafe-statics.clcpp2 // RUN: %clang -### -fno-threadsafe-statics -DNO_THREADSAFE_STATICS -c %s 2>&1 | FileCheck --check-…
5 // CHECK-NO-THREADSAFE-STATICS: "-fno-threadsafe-statics"
6 // CHECK-NO-THREADSAFE-STATICS-NOT: "-fthreadsafe-statics"
8 // RUN: %clang -### -fthreadsafe-statics -DTHREADSAFE_STATICS -c %s 2>&1 | FileCheck --check-prefix…
11 // CHECK-THREADSAFE-STATICS-NOT: "-fno-threadsafe-statics"
/llvm-project-15.0.7/lldb/source/API/
H A DSBBlock.cpp233 bool locals, bool statics, in GetVariables() argument
235 LLDB_INSTRUMENT_VA(this, frame, arguments, locals, statics, use_dynamic); in GetVariables()
254 add_variable = statics; in GetVariables()
287 bool locals, bool statics) { in GetVariables() argument
288 LLDB_INSTRUMENT_VA(this, target, arguments, locals, statics); in GetVariables()
309 add_variable = statics; in GetVariables()
H A DSBVariablesOptions.cpp154 void SBVariablesOptions::SetIncludeStatics(bool statics) { in SetIncludeStatics() argument
155 LLDB_INSTRUMENT_VA(this, statics); in SetIncludeStatics()
157 m_opaque_up->SetIncludeStatics(statics); in SetIncludeStatics()
H A DSBFrame.cpp728 SBValueList SBFrame::GetVariables(bool arguments, bool locals, bool statics, in GetVariables() argument
730 LLDB_INSTRUMENT_VA(this, arguments, locals, statics, in_scope_only); in GetVariables()
747 options.SetIncludeStatics(statics); in GetVariables()
758 bool statics, bool in_scope_only, in GetVariables() argument
760 LLDB_INSTRUMENT_VA(this, arguments, locals, statics, in_scope_only, in GetVariables()
772 options.SetIncludeStatics(statics); in GetVariables()
789 const bool statics = options.GetIncludeStatics(); in GetVariables() local
819 add_variable = statics; in GetVariables()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBBlock.h58 bool locals, bool statics,
62 bool locals, bool statics);
H A DSBFrame.h140 lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics,
143 lldb::SBValueList GetVariables(bool arguments, bool locals, bool statics,
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i219 bool statics,
225 bool statics,
362statics = property(get_statics, None, doc='''A read only property that returns a list() that conta…
H A DSBBlock.i94 bool statics,
101 bool statics);
/llvm-project-15.0.7/lld/test/COFF/
H A Dpdb-file-static.test1 # RUN: yaml2obj %S/Inputs/pdb-file-statics-a.yaml -o %t.a.obj
2 # RUN: yaml2obj %S/Inputs/pdb-file-statics-b.yaml -o %t.b.obj
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/
H A Dexport.ll6 ; Ensure statics are promoted/renamed correctly from this file.
H A Dfuncimport.ll9 ; Ensure statics are promoted/renamed correctly from this file (all but
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Ddynamic-static-initializers.rst11 static variables initialized at runtime (e.g. by ``-fno-threadsafe-statics``), even if a particular…
/llvm-project-15.0.7/lldb/examples/python/
H A Dcmdtemplate.py125 options.statics,
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/
H A Ddwp-debug-types.s16 # SYMBOLS: Globals and statics:
/llvm-project-15.0.7/clang/docs/
H A DMSVCCompatibility.rst101 * Thread-safe initialization of local statics: :good:`Complete`. MSVC 2015
H A DClangCommandLineReference.rst2569 .. option:: -fthreadsafe-statics, -fno-threadsafe-statics
H A DLanguageExtensions.rst4452 * The pragma applies to all global variable, statics and function declarations
/llvm-project-15.0.7/llvm/test/Linker/
H A Dfuncimport.ll13 ; Ensure statics are promoted/renamed correctly from this file (all but
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCGNU.cpp3724 llvm::Constant *statics = NULLPtr; in ModuleInitFunction() local
3749 statics = allStaticsArray.finishAndCreateGlobal(".objc_statics_ptr", in ModuleInitFunction()
3751 statics = llvm::ConstantExpr::getBitCast(statics, PtrTy); in ModuleInitFunction()
3840 classList.add(statics); in ModuleInitFunction()
/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A DChangeLog499 The compile-time switchable statics are now strictly static.
509 9736a8b imath: Drop switchable statics and stdio dependency.
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Dgnu-public-names.ll200 ; GCC Doesn't put local statics in pubnames, but it seems not unreasonable and
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Duninitialized.cpp700 namespace statics { namespace
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td2851 defm threadsafe_statics : BoolFOption<"threadsafe-statics",
2853 …NegFlag<SetFalse, [CC1Option], "Do not emit code to make initialization of local statics thread sa…