Home
last modified time | relevance | path

Searched refs:IsStatic (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBlock.h53 bool IsStatic = false, bool IsExtern = false)
54 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID()
56 Block(const Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
57 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern),
67 bool isStatic() const { return IsStatic; } in isStatic()
126 Block(const Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead) in Block() argument
127 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block()
145 bool IsStatic = false; variable
H A DInterpBlock.cpp21 if (IsStatic) { in addPointer()
38 if (IsStatic) { in removePointer()
64 if (IsStatic) { in replacePointer()
95 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock()
H A DProgram.cpp163 bool IsStatic, IsExtern; in createGlobal() local
165 IsStatic = Context::shouldBeGloballyIndexed(VD); in createGlobal()
168 IsStatic = true; in createGlobal()
171 IsStatic = false; in createGlobal()
174 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern, Init)) { in createGlobal()
187 bool IsStatic, bool IsExtern, in createGlobal() argument
206 Global(getCurrentDecl(), Desc, IsStatic, IsExtern); in createGlobal()
H A DProgram.h154 bool IsStatic, bool IsExtern,
H A DByteCodeExprGen.cpp1473 bool IsStatic = E->getStorageDuration() == SD_Static; in VisitMaterializeTemporaryExpr() local
1474 if (GlobalDecl || IsStatic) { in VisitMaterializeTemporaryExpr()
1481 if (IsStatic) in VisitMaterializeTemporaryExpr()
1487 if (IsStatic) { in VisitMaterializeTemporaryExpr()
1502 if (IsStatic) in VisitMaterializeTemporaryExpr()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DNaCl.cpp57 const bool IsStatic = in ConstructJob() local
83 if (!IsStatic) in ConstructJob()
99 if (IsStatic) in ConstructJob()
112 if (IsStatic) in ConstructJob()
134 Args.hasArg(options::OPT_static_libstdcxx) && !IsStatic; in ConstructJob()
165 if (IsStatic) in ConstructJob()
H A DHexagon.cpp291 bool IsStatic = Args.hasArg(options::OPT_static); in constructHexagonLinkArgs() local
301 bool UseShared = IsShared && !IsStatic; in constructHexagonLinkArgs()
339 if (IsStatic) in constructHexagonLinkArgs()
H A DGnu.cpp377 const bool IsStatic = getStatic(Args); in ConstructJob() local
439 } else if (IsStatic) { in ConstructJob()
498 else if (IsStatic) in ConstructJob()
579 if (IsStatic || IsStaticPIE) in ConstructJob()
631 if (IsStatic || IsStaticPIE) in ConstructJob()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVElement.h90 IsStatic, enumerator
163 PROPERTY(Property, IsStatic);
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp594 bool IsStatic = true; in output() local
606 IsStatic = false; in output()
611 if (!(Flags & OF_NoMemberType) && IsStatic) in output()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp976 bool IsStatic = STType == SymtabType::Static; in initSymtabSectionHeader() local
978 if (IsStatic && Doc.Symbols) in initSymtabSectionHeader()
980 else if (!IsStatic && Doc.DynamicSymbols) in initSymtabSectionHeader()
987 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols); in initSymtabSectionHeader()
989 StringRef Property = (IsStatic ? "`Symbols`" : "`DynamicSymbols`"); in initSymtabSectionHeader()
1000 SHeader.sh_name = getSectionNameOffset(IsStatic ? ".symtab" : ".dynsym"); in initSymtabSectionHeader()
1005 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; in initSymtabSectionHeader()
1009 else if (!IsStatic) in initSymtabSectionHeader()
1030 toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr); in initSymtabSectionHeader()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2968 bool IsStatic; member
3290 return std::make_tuple(!Imports[LHSI].IsStatic ^ in sortJavaImports()
3293 std::make_tuple(!Imports[RHSI].IsStatic ^ in sortJavaImports()
3305 bool CurrentIsStatic = Imports[Indices.front()].IsStatic; in sortJavaImports()
3312 if (CurrentIsStatic != Imports[Index].IsStatic || in sortJavaImports()
3322 CurrentIsStatic = Imports[Index].IsStatic; in sortJavaImports()
3382 bool IsStatic = false; in sortJavaImports() local
3384 IsStatic = true; in sortJavaImports()
3386 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic}); in sortJavaImports()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2962 const bool IsStatic; member in __anonf567d4441111::MipsGOTParser
3016 : IsStatic(D.dynamic_table().empty()), Obj(D.getElfObject().getELFFile()), in MipsGOTParser()
3029 if (IsStatic) { in findGOT()
6707 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n"); in printMipsGOT()
6731 if (Parser.IsStatic) in printMipsGOT()
7917 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT"); in printMipsGOT()
7942 if (Parser.IsStatic) in printMipsGOT()