Home
last modified time | relevance | path

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

/external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/Target/X86/
DX86Subtarget.cpp64 bool isDecl = GV->hasAvailableExternallyLinkage(); in ClassifyGlobalReference() local
66 isDecl = true; in ClassifyGlobalReference()
79 (isDecl || GV->isWeakForLinker())) in ClassifyGlobalReference()
105 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
115 if (isDecl || GV->hasCommonLinkage()) { in ClassifyGlobalReference()
129 if (!isDecl && !GV->isWeakForLinker()) in ClassifyGlobalReference()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCSubtarget.cpp136 bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); in hasLazyResolverStub() local
137 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) in hasLazyResolverStub()
140 GV->hasCommonLinkage() || isDecl; in hasLazyResolverStub()
/external/clang/include/clang/Serialization/
DASTWriter.h155 bool isDecl() const { return !IsType; } in isDecl() function
163 assert(isDecl() && "Not a decl!"); in getDecl()