HomeSort by relevance Sort by last modified time
    Searched refs:isDecl (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.cpp 71 bool isDecl = GV->hasAvailableExternallyLinkage();
73 isDecl = true;
83 if (TM.getCodeModel() == CodeModel::Small && GV->isWeakForLinker() && isDecl)
96 return (isDecl || GV->isWeakForLinker()) ? AArch64II::MO_GOT
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 73 bool isDecl = GV->hasAvailableExternallyLinkage();
75 isDecl = true;
88 (isDecl || GV->isWeakForLinker()))
114 if (!isDecl && !GV->isWeakForLinker())
124 if (isDecl || GV->hasCommonLinkage()) {
138 if (!isDecl && !GV->isWeakForLinker())
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 373 bool isDecl = GV->hasAvailableExternallyLinkage();
375 isDecl = true;
386 if (!isDecl && !GV->isWeakForLinker())
396 if (isDecl || GV->hasCommonLinkage())
404 if (!isDecl && !GV->isWeakForLinker())
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp 218 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
219 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
222 GV->hasCommonLinkage() || isDecl;
  /external/clang/include/clang/Serialization/
ASTWriter.h 137 bool isDecl() const { return !IsType; }
145 assert(isDecl() && "Not a decl!");

Completed in 466 milliseconds