Home
last modified time | relevance | path

Searched refs:isDecl (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Target/AArch64/
DAArch64Subtarget.cpp71 bool isDecl = GV->hasAvailableExternallyLinkage(); in ClassifyGlobalReference() local
73 isDecl = true; in ClassifyGlobalReference()
83 if (TM.getCodeModel() == CodeModel::Small && GV->isWeakForLinker() && isDecl) in ClassifyGlobalReference()
96 return (isDecl || GV->isWeakForLinker()) ? AArch64II::MO_GOT in ClassifyGlobalReference()
/external/llvm/lib/Target/X86/
DX86Subtarget.cpp73 bool isDecl = GV->hasAvailableExternallyLinkage(); in ClassifyGlobalReference() local
75 isDecl = true; in ClassifyGlobalReference()
88 (isDecl || GV->isWeakForLinker())) in ClassifyGlobalReference()
114 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
124 if (isDecl || GV->hasCommonLinkage()) { in ClassifyGlobalReference()
138 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
/external/llvm/lib/Target/ARM/
DARMSubtarget.cpp373 bool isDecl = GV->hasAvailableExternallyLinkage(); in GVIsIndirectSymbol() local
375 isDecl = true; in GVIsIndirectSymbol()
386 if (!isDecl && !GV->isWeakForLinker()) in GVIsIndirectSymbol()
396 if (isDecl || GV->hasCommonLinkage()) in GVIsIndirectSymbol()
404 if (!isDecl && !GV->isWeakForLinker()) in GVIsIndirectSymbol()
/external/llvm/lib/Target/PowerPC/
DPPCSubtarget.cpp218 bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); in hasLazyResolverStub() local
219 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) in hasLazyResolverStub()
222 GV->hasCommonLinkage() || isDecl; in hasLazyResolverStub()
/external/clang/include/clang/Serialization/
DASTWriter.h137 bool isDecl() const { return !IsType; } in isDecl() function
145 assert(isDecl() && "Not a decl!"); in getDecl()