Home
last modified time | relevance | path

Searched refs:getBinding (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h230 switch (Sym.getBinding()) { in getSymbolLinkageAndScope()
244 Twine(static_cast<int>(Sym.getBinding())) + " for " + Name, in getSymbolLinkageAndScope()
554 if (Sym.getBinding() != ELF::STB_GLOBAL && in graphifySymbols()
555 Sym.getBinding() != ELF::STB_WEAK) in graphifySymbols()
558 Twine(static_cast<int>(Sym.getBinding())) + in graphifySymbols()
564 Sym.getBinding() == ELF::STB_WEAK); in graphifySymbols()
568 Sym.getBinding() == ELF::STB_LOCAL && Name->empty()) { in graphifySymbols()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h74 return getBinding() == wasm::WASM_SYMBOL_BINDING_WEAK; in isBindingWeak()
78 return getBinding() == wasm::WASM_SYMBOL_BINDING_GLOBAL; in isBindingGlobal()
82 return getBinding() == wasm::WASM_SYMBOL_BINDING_LOCAL; in isBindingLocal()
85 unsigned getBinding() const { in getBinding() function
H A DELFObjectFile.h176 uint8_t getBinding() const { in getBinding() function
376 unsigned char Binding = ESym->getBinding(); in isExportedToOtherDSO()
666 return (*SymOrErr)->getBinding(); in getSymbolBinding()
719 if (ESym->getBinding() != ELF::STB_LOCAL) in getSymbolFlags()
722 if (ESym->getBinding() == ELF::STB_WEAK) in getSymbolFlags()
H A DELFTypes.h224 unsigned char getBinding() const { return st_info >> 4; }
228 void setType(unsigned char t) { setBindingAndType(getBinding(), t); }
270 return getBinding() != ELF::STB_LOCAL;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolELF.h36 unsigned getBinding() const;
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp1090 uint8_t binding = eSym.getBinding(); in initializeSymbols()
1122 sym->resolve(Undefined{this, StringRef(), eSym.getBinding(), eSym.st_other, in initializeSymbols()
1149 if (LLVM_UNLIKELY(eSym.getBinding() != STB_LOCAL)) in initSectionsAndLocalSyms()
1182 uint8_t binding = eSym.getBinding(); in postParse()
1280 return sym.isDefined() && sym.getBinding() == STB_GLOBAL && in isNonCommonDef()
1500 if (sym.getBinding() == STB_LOCAL) { in parse()
1523 Undefined{this, name, sym.getBinding(), sym.st_other, sym.getType()}); in parse()
1525 if (s->isUndefined() && sym.getBinding() != STB_WEAK && in parse()
1547 SharedSymbol{*this, name, sym.getBinding(), sym.st_other, in parse()
1565 SharedSymbol{*this, saver().save(name), sym.getBinding(), sym.st_other, in parse()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DELF.h1258 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
1261 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
1278 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
1281 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCELFStreamer.cpp236 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_GLOBAL) in emitSymbolAttribute()
247 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_WEAK) in emitSymbolAttribute()
254 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_LOCAL) in emitSymbolAttribute()
323 if (Symbol->getBinding() == ELF::STB_LOCAL) { in emitCommonSymbol()
H A DMCSymbolELF.cpp66 unsigned MCSymbolELF::getBinding() const { in getBinding() function in llvm::MCSymbolELF
H A DELFObjectWriter.cpp538 uint8_t Binding = Symbol.getBinding(); in writeSymbol()
688 bool Local = Symbol.getBinding() == ELF::STB_LOCAL; in computeSymbolTable()
795 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL); in computeSymbolTable()
1273 Alias->setBinding(Symbol.getBinding()); in executePostLayoutBinding()
1361 unsigned Binding = Sym->getBinding(); in shouldRelocateWithSymbol()
1539 if (SymA.getBinding() != ELF::STB_LOCAL || in isSymbolRefDifferenceFullyResolvedImpl()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp133 LHSVal = Mgr.getStoreManager().getBinding(State->getStore(), in evalComparison()
H A DRegionStore.cpp551 SVal getBinding(Store S, Loc L, QualType T) override { in getBinding() function in __anon93e2d1960411::RegionStoreManager
552 return getBinding(getRegionBindings(S), L, T); in getBinding()
563 SVal getBinding(RegionBindingsConstRef B, Loc L, QualType T = QualType());
1104 SVal V = RM.getBinding(B, loc::MemRegionVal(VR)); in VisitCluster()
1383 SVal RegionStoreManager::getBinding(RegionBindingsConstRef B, Loc L, QualType T) { in getBinding() function in RegionStoreManager
2474 SVal V = getBinding(B.asStore(), *MRV, R->getValueType()); in bindArray()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h235 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
H A DELFHeader.cpp320 bindingToCString(getBinding()), typeToCString(getType()), st_other, in Dump()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.cpp103 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) { in HexagonMCEmitCommonSymbol()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h74 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
H A DProgramState.h825 return getStateManager().StoreMgr->getBinding(getStore(), LV, T); in getRawSVal()
829 return getStateManager().StoreMgr->getBinding(getStore(), in getSVal()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectFileInterface.cpp133 if (Sym.getBinding() == ELF::STB_GNU_UNIQUE) in getELFObjectFileSymbolInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp523 uint8_t Binding = RawSym.getBinding(); in createELFSym()
553 uint8_t Binding = RawSym.getBinding(); in populateSymbols()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp216 if (Obj.isELF() && ELFSymbolRef(Symbol).getBinding() != ELF::STB_LOCAL) in addSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp151 Reloc.OriginalSymbol->getBinding() != ELF::STB_LOCAL) in getMatchingLoType()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp211 SymbolRef sym = SM.getBinding(State->getStore(), *X).getAsLocSymbol(); in getAsPointeeSymbol()
H A DCallAndMessageChecker.cpp265 SVal V = StoreMgr.getBinding(store, loc::MemRegionVal(FR)); in Find()
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h738 std::pair<uint32_t, uint8_t> getBinding(const Symbol *sym,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h482 if (const auto *E = D->getBinding()) in VisitBindingDecl()

12