/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELFLinkGraphBuilder.h | 230 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/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | Wasm.h | 78 return getBinding() == wasm::WASM_SYMBOL_BINDING_WEAK; in isBindingWeak() 82 return getBinding() == wasm::WASM_SYMBOL_BINDING_GLOBAL; in isBindingGlobal() 86 return getBinding() == wasm::WASM_SYMBOL_BINDING_LOCAL; in isBindingLocal() 89 unsigned getBinding() const { in getBinding() function
|
H A D | ELFObjectFile.h | 182 uint8_t getBinding() const { in getBinding() function 395 unsigned char Binding = ESym->getBinding(); in isExportedToOtherDSO() 705 return (*SymOrErr)->getBinding(); in getSymbolBinding() 758 if (ESym->getBinding() != ELF::STB_LOCAL) in getSymbolFlags() 761 if (ESym->getBinding() == ELF::STB_WEAK) in getSymbolFlags()
|
H A D | ELFTypes.h | 227 unsigned char getBinding() const { return st_info >> 4; } 231 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } 273 return getBinding() != ELF::STB_LOCAL;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSymbolELF.h | 37 unsigned getBinding() const;
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | InputFiles.cpp | 1148 uint8_t binding = eSym.getBinding(); in initializeSymbols() 1180 sym->resolve(Undefined{this, StringRef(), eSym.getBinding(), eSym.st_other, in initializeSymbols() 1207 if (LLVM_UNLIKELY(eSym.getBinding() != STB_LOCAL)) in initSectionsAndLocalSyms() 1240 uint8_t binding = eSym.getBinding(); in postParse() 1338 return sym.isDefined() && sym.getBinding() == STB_GLOBAL && in isNonCommonDef() 1558 if (sym.getBinding() == STB_LOCAL) { in parse() 1581 Undefined{this, name, sym.getBinding(), sym.st_other, sym.getType()}); in parse() 1583 if (sym.getBinding() != STB_WEAK && in parse() 1605 SharedSymbol{*this, name, sym.getBinding(), sym.st_other, in parse() 1623 SharedSymbol{*this, saver().save(name), sym.getBinding(), sym.st_other, in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCELFStreamer.cpp | 190 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_GLOBAL) in emitSymbolAttribute() 201 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_WEAK) in emitSymbolAttribute() 208 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_LOCAL) in emitSymbolAttribute() 277 if (Symbol->getBinding() == ELF::STB_LOCAL) { in emitCommonSymbol()
|
H A D | ELFObjectWriter.cpp | 405 uint8_t Binding = Symbol.getBinding(); in writeSymbol() 536 bool Local = Symbol.getBinding() == ELF::STB_LOCAL; in computeSymbolTable() 649 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL); in computeSymbolTable() 1154 Alias->setBinding(Symbol.getBinding()); in executePostLayoutBinding() 1242 unsigned Binding = Sym->getBinding(); in shouldRelocateWithSymbol() 1443 if (SymA.getBinding() != ELF::STB_LOCAL || in isSymbolRefDifferenceFullyResolvedImpl()
|
H A D | MCSymbolELF.cpp | 66 unsigned MCSymbolELF::getBinding() const { in getBinding() function in llvm::MCSymbolELF
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | ELF.h | 1281 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function 1284 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType() 1301 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function 1304 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CheckerContext.cpp | 146 LHSVal = Mgr.getStoreManager().getBinding(State->getStore(), in evalComparison()
|
H A D | RegionStore.cpp | 551 SVal getBinding(Store S, Loc L, QualType T) override { in getBinding() function in __anonfa909ae00411::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 2475 SVal V = getBinding(B.asStore(), *MRV, R->getValueType()); in bindArray()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ELFHeader.h | 235 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
|
H A D | ELFHeader.cpp | 320 bindingToCString(getBinding()), typeToCString(getType()), st_other, in Dump()
|
H A D | ObjectFileELF.cpp | 2231 if (symbol.getBinding() == STB_LOCAL) { in ParseSymbols() 2256 if (symbol.getBinding() == STB_LOCAL) { in ParseSymbols() 2346 bool is_global = symbol.getBinding() == STB_GLOBAL; in ParseSymbols() 2412 if (symbol.getBinding() == STB_WEAK) in ParseSymbols()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCELFStreamer.cpp | 105 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) { in HexagonMCEmitCommonSymbol()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | Store.h | 74 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
|
H A D | ProgramState.h | 813 return getStateManager().StoreMgr->getBinding(getStore(), LV, T); in getRawSVal() 817 return getStateManager().StoreMgr->getBinding(getStore(), in getSVal()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | DXILResource.h | 184 ResourceBinding getBinding() const { return Binding; } in getBinding() function
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ObjectFileInterface.cpp | 133 if (Sym.getBinding() == ELF::STB_GNU_UNIQUE) in getELFObjectFileSymbolInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/ |
H A D | ELFObjHandler.cpp | 523 uint8_t Binding = RawSym.getBinding(); in createELFSym() 553 uint8_t Binding = RawSym.getBinding(); in populateSymbols()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | SymbolizableObjectFile.cpp | 216 if (Obj.isELF() && ELFSymbolRef(Symbol).getBinding() != ELF::STB_LOCAL) in addSymbol()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsELFObjectWriter.cpp | 151 Reloc.OriginalSymbol->getBinding() != ELF::STB_LOCAL) in getMatchingLoType()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | Transfer.cpp | 257 if (auto *ME = dyn_cast_or_null<MemberExpr>(B->getBinding())) { in ProcessVarDecl()
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SyntheticSections.h | 801 std::pair<uint32_t, uint8_t> getBinding(const Symbol *sym,
|