| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | InterpBlock.h | 39 bool IsStatic = false, bool IsExtern = false) 40 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID() 42 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false) 43 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern), 53 bool isStatic() const { return IsStatic; } in isStatic() 81 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead) in Block() argument 82 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block() 97 bool IsStatic = false; variable
|
| H A D | InterpBlock.cpp | 22 if (IsStatic) in addPointer() 32 if (IsStatic) in removePointer() 48 if (IsStatic) in movePointer() 64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock()
|
| H A D | Program.cpp | 157 bool IsStatic, IsExtern; in createGlobal() local 159 IsStatic = !Var->hasLocalStorage(); in createGlobal() 162 IsStatic = false; in createGlobal() 165 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern)) { in createGlobal() 178 bool IsStatic, bool IsExtern) { in createGlobal() argument 195 Global(getCurrentDecl(), Desc, IsStatic, IsExtern); in createGlobal()
|
| H A D | Pointer.cpp | 139 if (Pointee->IsStatic) in isInitialized() 158 if (!Pointee->IsStatic) { in initialize()
|
| H A D | Program.h | 137 bool IsStatic, bool IsExtern);
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | NaCl.cpp | 59 const bool IsStatic = in ConstructJob() local 85 if (!IsStatic) in ConstructJob() 101 if (IsStatic) in ConstructJob() 114 if (IsStatic) in ConstructJob() 137 Args.hasArg(options::OPT_static_libstdcxx) && !IsStatic; in ConstructJob() 168 if (IsStatic) in ConstructJob()
|
| H A D | Hexagon.cpp | 288 bool IsStatic = Args.hasArg(options::OPT_static); in constructHexagonLinkArgs() local 298 bool UseShared = IsShared && !IsStatic; in constructHexagonLinkArgs() 336 if (IsStatic) in constructHexagonLinkArgs()
|
| H A D | Gnu.cpp | 406 const bool IsStatic = getStatic(Args); in ConstructJob() local 474 if (IsStatic) { in ConstructJob() 531 else if (IsStatic) in ConstructJob() 607 if (IsStatic || IsStaticPIE) in ConstructJob() 657 if (IsStatic || IsStaticPIE) in ConstructJob()
|
| /llvm-project-15.0.7/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangleNodes.cpp | 595 bool IsStatic = true; in output() local 607 IsStatic = false; in output() 612 if (!(Flags & OF_NoMemberType) && IsStatic) in output()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 974 bool IsStatic = STType == SymtabType::Static; in initSymtabSectionHeader() local 976 if (IsStatic && Doc.Symbols) in initSymtabSectionHeader() 978 else if (!IsStatic && Doc.DynamicSymbols) in initSymtabSectionHeader() 985 (IsStatic && Doc.Symbols) || (!IsStatic && Doc.DynamicSymbols); in initSymtabSectionHeader() 987 StringRef Property = (IsStatic ? "`Symbols`" : "`DynamicSymbols`"); in initSymtabSectionHeader() 998 SHeader.sh_name = getSectionNameOffset(IsStatic ? ".symtab" : ".dynsym"); in initSymtabSectionHeader() 1003 SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; in initSymtabSectionHeader() 1007 else if (!IsStatic) in initSymtabSectionHeader() 1028 toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr); in initSymtabSectionHeader()
|
| /llvm-project-15.0.7/clang/lib/Format/ |
| H A D | Format.cpp | 2589 bool IsStatic; member 2922 return std::make_tuple(!Imports[LHSI].IsStatic ^ in sortJavaImports() 2925 std::make_tuple(!Imports[RHSI].IsStatic ^ in sortJavaImports() 2937 bool CurrentIsStatic = Imports[Indices.front()].IsStatic; in sortJavaImports() 2944 if (CurrentIsStatic != Imports[Index].IsStatic || in sortJavaImports() 2954 CurrentIsStatic = Imports[Index].IsStatic; in sortJavaImports() 3014 bool IsStatic = false; in sortJavaImports() local 3016 IsStatic = true; in sortJavaImports() 3018 {Identifier, Line, Prev, AssociatedCommentLines, IsStatic}); in sortJavaImports()
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 2718 const bool IsStatic; member in __anon01236eac1111::MipsGOTParser 2772 : IsStatic(D.dynamic_table().empty()), Obj(D.getElfObject().getELFFile()), in MipsGOTParser() 2785 if (IsStatic) { in findGOT() 6272 OS << (Parser.IsStatic ? "Static GOT:\n" : "Primary GOT:\n"); in printMipsGOT() 6296 if (Parser.IsStatic) in printMipsGOT() 7347 DictScope GS(W, Parser.IsStatic ? "Static GOT" : "Primary GOT"); in printMipsGOT() 7372 if (Parser.IsStatic) in printMipsGOT()
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | ConstantInterpreter.rst | 132 * ``IsStatic`` indicates whether the block has static duration in the
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaType.cpp | 7830 void Sema::adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor, in adjustMemberFunctionCC() argument 7837 CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic); in adjustMemberFunctionCC() 7857 Context.getDefaultCallingConvention(IsVariadic, IsStatic); in adjustMemberFunctionCC()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 4594 void adjustMemberFunctionCC(QualType &T, bool IsStatic, bool IsCtorOrDtor,
|