Home
last modified time | relevance | path

Searched refs:IsDefinition (Results 1 – 18 of 18) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp257 bool IsDefinition; member in __anonb4fd30e80111::GlobalTypeMember
273 GTM->IsDefinition = IsDefinition; in create()
285 return IsDefinition; in isDefinition()
1229 Function *F, Constant *JT, bool IsDefinition) { in replaceWeakDeclarationWithJumpTablePtr() argument
1243 replaceCfiUses(F, PlaceholderFn, IsDefinition); in replaceWeakDeclarationWithJumpTablePtr()
1446 bool IsDefinition = Functions[I]->isDefinition(); in buildBitSetsFromFunctionsNative() local
1455 if (IsDefinition) { in buildBitSetsFromFunctionsNative()
1465 if (!IsDefinition) { in buildBitSetsFromFunctionsNative()
1469 replaceCfiUses(F, CombinedGlobalElemPtr, IsDefinition); in buildBitSetsFromFunctionsNative()
1479 replaceCfiUses(F, FAlias, IsDefinition); in buildBitSetsFromFunctionsNative()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DDIBuilder.cpp758 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition; in createFunction() local
760 /*IsDistinct=*/IsDefinition, VMContext, getNonCompileUnitScope(Context), in createFunction()
762 SPFlags, IsDefinition ? CUNode : nullptr, TParams, Decl, in createFunction()
765 if (IsDefinition) in createFunction()
777 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition; in createTempFunctionFwdDecl() local
781 IsDefinition ? CUNode : nullptr, TParams, in createTempFunctionFwdDecl()
796 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition; in createMethod() local
798 /*IsDistinct=*/IsDefinition, VMContext, cast<DIScope>(Context), Name, in createMethod()
800 Flags, SPFlags, IsDefinition ? CUNode : nullptr, TParams, nullptr, in createMethod()
803 if (IsDefinition) in createMethod()
H A DLLVMContextImpl.h704 static bool isDeclarationOfODRMember(bool IsDefinition, const Metadata *Scope,
709 if (IsDefinition || !Scope || !LinkageName)
722 return IsDefinition == RHS->isDefinition() && Scope == RHS->getRawScope() &&
864 bool IsDefinition;
871 bool IsLocalToUnit, bool IsDefinition,
876 IsDefinition(IsDefinition),
883 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()),
893 IsDefinition == RHS->isDefinition() &&
909 IsLocalToUnit, IsDefinition, /* AlignInBits, */
H A DDebugInfo.cpp722 pack_into_DISPFlags(bool IsLocalToUnit, bool IsDefinition, bool IsOptimized) { in pack_into_DISPFlags() argument
723 return DISubprogram::toSPFlags(IsLocalToUnit, IsDefinition, IsOptimized); in pack_into_DISPFlags()
805 LLVMBool IsLocalToUnit, LLVMBool IsDefinition, in LLVMDIBuilderCreateFunction() argument
811 pack_into_DISPFlags(IsLocalToUnit, IsDefinition, IsOptimized), nullptr, in LLVMDIBuilderCreateFunction()
H A DDebugInfoMetadata.cpp732 Metadata *Type, bool IsLocalToUnit, bool IsDefinition, in getImpl() argument
739 Type, IsLocalToUnit, IsDefinition, in getImpl()
751 (Line, IsLocalToUnit, IsDefinition, AlignInBits), Ops); in getImpl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DCodeCompletionHandler.h49 virtual void CodeCompleteMacroName(bool IsDefinition) { } in CodeCompleteMacroName() argument
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1679 static DISPFlags toSPFlags(bool IsLocalToUnit, bool IsDefinition,
1690 (IsDefinition ? SPFlagDefinition : SPFlagZero) |
2591 bool IsDefinition;
2594 bool IsLocalToUnit, bool IsDefinition, uint32_t AlignInBits,
2597 IsLocalToUnit(IsLocalToUnit), IsDefinition(IsDefinition) {}
2603 bool IsLocalToUnit, bool IsDefinition,
2608 IsLocalToUnit, IsDefinition, StaticDataMemberDeclaration,
2615 bool IsLocalToUnit, bool IsDefinition,
2630 bool IsLocalToUnit, bool IsDefinition,
2639 bool IsLocalToUnit, bool IsDefinition,
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp655 bool Decl::canBeWeakImported(bool &IsDefinition) const { in canBeWeakImported()
656 IsDefinition = false; in canBeWeakImported()
661 IsDefinition = true; in canBeWeakImported()
669 IsDefinition = true; in canBeWeakImported()
686 bool IsDefinition; in isWeakImported() local
687 if (!canBeWeakImported(IsDefinition)) in isWeakImported()
/freebsd-12.1/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dast.py120 def IsDefinition(self): member in Node
278 def IsDefinition(self): member in Typedef
302 def IsDefinition(self): member in _NestedType
331 def IsDefinition(self): member in Class
374 def IsDefinition(self): member in Function
451 def IsDefinition(self): member in Type
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h653 bool IsDefinition = true) const;
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DDebugInfo.h322 LLVMBool IsLocalToUnit, LLVMBool IsDefinition,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp1955 void Parser::CodeCompleteMacroName(bool IsDefinition) { in CodeCompleteMacroName() argument
1956 Actions.CodeCompletePreprocessorMacroName(IsDefinition); in CodeCompleteMacroName()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h691 bool canBeWeakImported(bool &IsDefinition) const;
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2939 bool IsDefinition) const { in EmitVisibility()
2945 if (IsDefinition) in EmitVisibility()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDecl.cpp6007 bool IsDefinition) { in checkDLLAttributeRedeclaration() argument
6016 IsDefinition = false; in checkDLLAttributeRedeclaration()
6084 IsDefinition = VD->isThisDeclarationADefinition(S.Context) != in checkDLLAttributeRedeclaration()
6095 if (IsMicrosoft && IsDefinition) { in checkDLLAttributeRedeclaration()
7718 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); in DiagnoseInvalidRedeclaration() local
7807 << Name << NewDC << IsDefinition); in DiagnoseInvalidRedeclaration()
7820 << Name << NewDC << IsDefinition << NewFD->getLocation(); in DiagnoseInvalidRedeclaration()
9289 bool IsDefinition) { in getImplicitCodeSegOrSectionAttrForFunction() argument
9292 if (!FD->hasAttr<SectionAttr>() && IsDefinition && in getImplicitCodeSegOrSectionAttrForFunction()
H A DSemaCodeComplete.cpp8188 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { in CodeCompletePreprocessorMacroName() argument
8191 IsDefinition ? CodeCompletionContext::CCC_MacroName in CodeCompletePreprocessorMacroName()
8193 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { in CodeCompletePreprocessorMacroName()
8207 } else if (IsDefinition) { in CodeCompletePreprocessorMacroName()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h2994 void CodeCompleteMacroName(bool IsDefinition) override;
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h1995 Attr *getImplicitCodeSegOrSectionAttrForFunction(const FunctionDecl *FD, bool IsDefinition);
10442 void CodeCompletePreprocessorMacroName(bool IsDefinition);