Home
last modified time | relevance | path

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

/external/llvm/lib/Target/ARM/
DARMSubtarget.cpp139 bool isDecl = GV->hasAvailableExternallyLinkage(); in GVIsIndirectSymbol() local
141 isDecl = true; in GVIsIndirectSymbol()
152 if (!isDecl && !GV->isWeakForLinker()) in GVIsIndirectSymbol()
162 if (isDecl || GV->hasCommonLinkage()) in GVIsIndirectSymbol()
170 if (!isDecl && !GV->isWeakForLinker()) in GVIsIndirectSymbol()
/external/llvm/lib/Target/X86/
DX86Subtarget.cpp63 bool isDecl = GV->hasAvailableExternallyLinkage(); in ClassifyGlobalReference() local
65 isDecl = true; in ClassifyGlobalReference()
78 (isDecl || GV->isWeakForLinker())) in ClassifyGlobalReference()
104 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
114 if (isDecl || GV->hasCommonLinkage()) { in ClassifyGlobalReference()
128 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
/external/llvm/lib/Target/PowerPC/
DPPCSubtarget.cpp138 bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); in hasLazyResolverStub() local
139 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) in hasLazyResolverStub()
142 GV->hasCommonLinkage() || isDecl; in hasLazyResolverStub()
/external/clang/include/clang/Serialization/
DASTWriter.h123 bool isDecl() const { return !IsType; } in isDecl() function
131 assert(isDecl() && "Not a decl!"); in getDecl()