/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Symbols.cpp | 233 if (!isDefined()) in parseSymbolVersion() 283 if (!isDefined() && !isCommon()) in includeInDynsym() 361 if (!sym.isDefined()) in computeIsPreemptible() 516 if (!isDefined()) in shouldReplace() 571 if (isDefined() && !isWeak() && !other.isWeak()) in checkDuplicate() 584 if (isDefined() && !isWeak()) { in resolve() 644 if (isDefined()) in resolve()
|
H A D | SymbolTable.cpp | 48 else if (!sym->isDefined()) in wrap() 105 if (sym->isDefined()) in addAndCheckDuplicate() 123 return sym.isDefined() || sym.isCommon() || sym.isLazy(); in canBeVersioned()
|
H A D | Symbols.h | 187 bool isDefined() const { return symbolKind == DefinedKind; } in isDefined() function 383 static bool classof(const Symbol *s) { return s->isDefined(); } in classof()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLink.h | 135 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined() function 436 assert(!Base.isDefined() && in constructExternal() 449 assert(!Base.isDefined() && in constructAbsolute() 508 bool isDefined() const { in isDefined() function 510 return Base->isDefined(); in isDefined() 532 return !Base->isDefined() && !Base->isAbsolute(); in isExternal() 556 assert(Base->isDefined() && "Not a defined symbol"); in getBlock() 563 assert(Base->isDefined() && "Not a defined symbol"); in getBlock() 584 assert((Size == 0 || Base->isDefined()) && in setSize() 623 assert((S != Scope::Local || Base->isDefined() || Base->isAbsolute()) && in setScope() [all …]
|
H A D | aarch32.h |
|
H A D | i386.h | 392 if (E.getKind() == i386::BranchPCRel32 && !E.getTarget().isDefined()) { in visitEdge()
|
H A D | loongarch.h | 366 if (E.getKind() == Branch26PCRel && !E.getTarget().isDefined()) { in visitEdge()
|
H A D | x86_64.h | 654 if (E.getKind() == x86_64::BranchPCRel32 && !E.getTarget().isDefined()) { in visitEdge()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | WasmObjectWriter.cpp | 469 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) { in executePostLayoutBinding() 553 SymA->isDefined()) { in recordRelocation() 680 if (!RelEntry.Symbol->isDefined()) in getProvisionalValue() 699 if (!RelEntry.Symbol->isDefined()) in getProvisionalValue() 1314 if (Sym.isComdat() && !Sym.isDefined()) in isInSymtab() 1381 if (!WS.isDefined() && !WS.isComdat()) { in prepareImports() 1585 << " isDefined=" << S.isDefined() << " isExternal=" in writeOneObject() 1592 if (WS.isComdat() && !WS.isDefined()) in writeOneObject() 1597 if (WS.isDefined()) { in writeOneObject() [all...] |
H A D | MCSymbolELF.cpp | 83 if (isDefined()) in getBinding()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSymbol.h | 250 bool isDefined() const { return !isUndefined(); } in isDefined() function 255 return isDefined() && !isAbsolute(); in isInSection()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | SEHFrameSupport.h | 45 if (!Sym.isDefined()) in operator()
|
H A D | JITLinkGeneric.cpp | 232 assert(!Sym->isDefined() && "Symbol being resolved is already defined"); in applyLookupResult() 305 if (E.getTarget().isDefined() && !E.getTarget().isLive()) in prune()
|
H A D | JITLinkGeneric.h | 164 assert((NoAllocSection || !E.getTarget().isDefined() || in fixUpBlocks()
|
H A D | COFF_x86_64.cpp | 159 if (!GraphSymbol->isDefined()) in addSingleRelocation()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Context.cpp | 262 bool IsBeingCompiled = Func && Func->isDefined() && !Func->isFullyCompiled(); in getOrCreateFunction() 263 bool WasNotDefined = Func && !Func->isConstexpr() && !Func->isDefined(); in getOrCreateFunction()
|
H A D | Function.h | 177 bool isDefined() const { return Defined; } in isDefined() function
|
H A D | ByteCodeEmitter.cpp | 162 if (!FuncDecl->isDefined() || in compileFunc()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/ |
H A D | BPFELFObjectWriter.cpp | 57 if (Sym.isDefined()) { in getRelocType()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.cpp | 201 if (!BeginLabel->isDefined() || !EndLabel->isDefined()) in computePadMap() 395 if (LPI.LandingPadLabel && !LPI.LandingPadLabel->isDefined()) in emitExceptionTable()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCDeclVendor.cpp | 313 const bool isDefined = false; in BuildMethod() local 358 isDefined, impControl, HasRelatedResultType); in BuildMethod()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransZeroOutPropsInDealloc.cpp | 120 if (!(setterM && setterM->isDefined())) { in TraverseObjCMethodDecl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorLoopCarriedReuse.cpp | 153 bool isDefined() { return Inst2Replace != nullptr; } in isDefined() function 591 if (ReuseCandidate.isDefined()) { in doVLCR()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCUDA.cpp | 513 if (!CD->isDefined() && CD->isTemplateInstantiation()) in isEmptyConstructor() 555 if (!DD->isDefined() && DD->isTemplateInstantiation()) in isEmptyDestructor() 920 Callee->hasAttr<CUDAGlobalAttr>() && !Callee->isDefined() && in CheckCall()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclObjC.h | 174 bool isImplicitlyDeclared = false, bool isDefined = false, 235 bool isImplicitlyDeclared = false, bool isDefined = false, 452 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined() function 453 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined() argument
|