| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | Symbols.cpp | 273 if (sym.isUndefined()) in printTraceSymbol() 302 if (sym->isUndefined() && !cast<Undefined>(sym)->discardedSecIdx && in maybeWarnUnorderableSymbol() 311 if (sym->isUndefined()) { in maybeWarnUnorderableSymbol() 342 return !sym.isUndefined() || ctx.arg.zDynamicUndefined; in computeIsPreemptible() 407 (isUndefined() && other.binding != STB_WEAK && other.discardedSecIdx)) { in resolve() 498 if (isUndefined() || isShared()) { in resolve() 625 if (LLVM_UNLIKELY(!isUndefined())) { in resolve() 668 if (visibility() == STV_DEFAULT && (isUndefined() || isLazy())) { in resolve()
|
| H A D | Symbols.h | 162 bool isUndefined() const { return symbolKind == UndefinedKind; } in isUndefined() function 174 bool isUndefWeak() const { return isWeak() && isUndefined(); } in isUndefWeak()
|
| H A D | InputFiles.cpp | 1345 return !sym.isUndefined() && !sym.isWeak() && !sym.isCommon(); in isBitcodeNonCommonDef() 1620 if (sym.isUndefined()) { in parse() 1855 if (objSym.isUndefined()) { in createBitcodeSymbol() 1893 if (!irSym.isUndefined()) in parse() 1896 if (irSym.isUndefined()) in parse() 1913 if (!irSym.isUndefined()) { in parseLazy() 1924 if (sym.file == this || !sym.isDefined() || irSym.isUndefined() || in postParse()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCObjectWriter.cpp | 39 assert(!SA.isUndefined() && !SB.isUndefined()); in isSymbolRefDifferenceFullyResolved()
|
| H A D | MachObjectWriter.cpp | 70 if (S.isUndefined()) in doesSymbolRequireExternRelocation() 107 if (Target.getAddSym() && Target.getAddSym()->isUndefined()) in getSymbolAddress() 110 if (Target.getSubSym() && Target.getSubSym()->isUndefined()) in getSymbolAddress() 409 if (IsAlias && Symbol->isUndefined()) in writeNlist() 411 else if (Symbol->isUndefined()) in writeNlist() 424 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist() 428 if (IsAlias && Symbol->isUndefined()) in writeNlist() 610 if (!Symbol.isExternal() && !Symbol.isUndefined()) in computeSymbolTable() 617 if (Symbol.isUndefined()) { in computeSymbolTable() 636 if (Symbol.isExternal() || Symbol.isUndefined()) in computeSymbolTable()
|
| H A D | MCMachOStreamer.cpp | 318 if (Symbol->isUndefined()) in emitSymbolAttribute() 344 if (Symbol->isUndefined()) in emitSymbolAttribute() 376 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in emitCommonSymbol()
|
| H A D | ELFObjectWriter.cpp | 487 if (Symbol.isUndefined()) { in isInSymtab() 530 if (Symbol.isTemporary() && Symbol.isUndefined()) { in computeSymbolTable() 551 } else if (Symbol.isUndefined()) { in computeSymbolTable() 1198 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding() 1212 if (!Symbol.isUndefined() && S.KeepOriginalSym) in executePostLayoutBinding() 1215 if (Symbol.isUndefined() && Rest.starts_with("@@") && in executePostLayoutBinding() 1343 if (SymB.isUndefined()) { in recordRelocation() 1373 !SymA->isUndefined() && in recordRelocation()
|
| H A D | MCExpr.cpp | 281 if (SA.isUndefined() || SB.isUndefined()) in attemptToFoldSymbolOffsetDifference()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MachObjectWriter.cpp | 181 if (A->isUndefined() || B->isUndefined()) { in RecordX86_64Relocation() 182 StringRef Name = A->isUndefined() ? A->getName() : B->getName(); in RecordX86_64Relocation() 555 if (!A->isUndefined()) in RecordX86Relocation()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSymbol.h | 252 bool isDefined() const { return !isUndefined(); } in isDefined() 262 bool isUndefined() const { return getFragment() == nullptr; } in isUndefined() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | SymbolSet.h | 146 return !Symbol->isUndefined() && !Symbol->isReexported(); 166 return Symbol->isUndefined();
|
| H A D | Symbol.h | 123 bool isUndefined() const { in isUndefined() function
|
| H A D | Record.h | 97 bool isUndefined() const { return Linkage == RecordLinkage::Undefined; } in isUndefined() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| H A D | AMDGPUELFObjectWriter.cpp | 83 if (SymA->isUndefined()) { in getRelocType()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | Symbol.cpp | 22 if (isUndefined()) in dump()
|
| H A D | RecordVisitor.cpp | 27 return !(RecordUndefs && R.isUndefined()); in shouldSkipRecord()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | TapiFile.cpp | 28 if (Sym->isUndefined()) in getFlags()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | MacroInfo.h | 386 bool isUndefined() const { return UndefLoc.isValid(); } in isUndefined() function 412 return !Def.isUndefined(); in isDefined()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | Wasm.h | 72 bool isDefined() const { return !isUndefined(); } in isDefined() 74 bool isUndefined() const { in isUndefined() function
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | HIPUtility.cpp | 242 bool isUndefined = in processSymbols() local 248 if (!isUndefined) { in processSymbols()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCELFStreamer.cpp | 115 if (ELFSymbol->isUndefined()) { in HexagonMCEmitCommonSymbol()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | MacroInfo.cpp | 221 return (!Def.isUndefined() || in findDirectiveAtLoc()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | ELFLinkGraphBuilder.h | 548 } else if (Sym.isUndefined() && Sym.isExternal()) { in graphifySymbols() 567 } else if (Sym.isUndefined() && Sym.st_value == 0 && Sym.st_size == 0 && in graphifySymbols()
|
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | InputFiles.cpp | 293 if (coffSym.isUndefined() || !coffSym.isExternal() || in parseLazy() 587 if (coffSym.isUndefined()) { in initializeSymbols() 1401 if (objSym.isUndefined()) { in parse() 1449 if (!sym.isUndefined()) { in parseLazy()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | LTO.cpp | 131 r.Prevailing = !objSym.isUndefined() && sym->getFile() == &f; in add()
|