Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/clang/unittests/StaticAnalyzer/
H A DStoreTest.cpp73 EXPECT_EQ(Zero, SManager.getBinding(StX0, LX0, ASTCtxt.IntTy)); in performTest()
78 EXPECT_EQ(Zero, SManager.getBinding(StY0, LY0, ASTCtxt.IntTy)); in performTest()
86 EXPECT_EQ(Zero, SManager.getBinding(StZ0, LZ0, ASTCtxt.IntTy)); in performTest()
91 EXPECT_EQ(One, SManager.getBinding(StX1, LX1, ASTCtxt.IntTy)); in performTest()
96 EXPECT_EQ(One, SManager.getBinding(StY1, LY1, ASTCtxt.IntTy)); in performTest()
140 EXPECT_EQ(One, SManager.getBinding(StX, ZeroElement, Int)); in performTest()
/llvm-project-15.0.7/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 DELFTypes.h223 unsigned char getBinding() const { return st_info >> 4; }
227 void setType(unsigned char t) { setBindingAndType(getBinding(), t); }
269 return getBinding() != ELF::STB_LOCAL;
H A DELFObjectFile.h165 uint8_t getBinding() const { in getBinding() function
365 unsigned char Binding = ESym->getBinding(); in isExportedToOtherDSO()
651 return (*SymOrErr)->getBinding(); in getSymbolBinding()
704 if (ESym->getBinding() != ELF::STB_LOCAL) in getSymbolFlags()
707 if (ESym->getBinding() == ELF::STB_WEAK) in getSymbolFlags()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSymbolELF.h36 unsigned getBinding() const;
/llvm-project-15.0.7/lld/ELF/
H A DInputFiles.cpp1027 uint8_t binding = eSym.getBinding(); in initializeSymbols()
1059 sym->resolve(Undefined{this, StringRef(), eSym.getBinding(), eSym.st_other, in initializeSymbols()
1082 if (LLVM_UNLIKELY(eSym.getBinding() != STB_LOCAL)) in initializeLocalSymbols()
1114 uint8_t binding = eSym.getBinding(); in postParse()
1211 return sym.isDefined() && sym.getBinding() == STB_GLOBAL && in isNonCommonDef()
1428 if (sym.getBinding() == STB_LOCAL) { in parse()
1451 Undefined{this, name, sym.getBinding(), sym.st_other, sym.getType()}); in parse()
1453 if (s->isUndefined() && sym.getBinding() != STB_WEAK && in parse()
1469 SharedSymbol{*this, name, sym.getBinding(), sym.st_other, in parse()
1493 SharedSymbol{*this, saver().save(name), sym.getBinding(), sym.st_other, in parse()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DELF.h1175 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
1178 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
1195 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
1198 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCELFStreamer.cpp235 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_GLOBAL) in emitSymbolAttribute()
246 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_WEAK) in emitSymbolAttribute()
253 if (Symbol->isBindingSet() && Symbol->getBinding() != ELF::STB_LOCAL) in emitSymbolAttribute()
317 if (Symbol->getBinding() == ELF::STB_LOCAL) { in emitCommonSymbol()
H A DMCSymbolELF.cpp63 unsigned MCSymbolELF::getBinding() const { in getBinding() function in llvm::MCSymbolELF
H A DELFObjectWriter.cpp525 uint8_t Binding = Symbol.getBinding(); in writeSymbol()
658 bool Local = Symbol.getBinding() == ELF::STB_LOCAL; in computeSymbolTable()
765 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL); in computeSymbolTable()
1233 Alias->setBinding(Symbol.getBinding()); in executePostLayoutBinding()
1311 unsigned Binding = Sym->getBinding(); in shouldRelocateWithSymbol()
1489 if (SymA.getBinding() != ELF::STB_LOCAL || in isSymbolRefDifferenceFullyResolvedImpl()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVAttributes.h68 uint32_t getBinding();
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp131 LHSVal = Mgr.getStoreManager().getBinding(State->getStore(), in evalComparison()
H A DRegionStore.cpp547 SVal getBinding(Store S, Loc L, QualType T) override { in getBinding() function in __anone91272100411::RegionStoreManager
548 return getBinding(getRegionBindings(S), L, T); in getBinding()
559 SVal getBinding(RegionBindingsConstRef B, Loc L, QualType T = QualType());
1105 SVal V = RM.getBinding(B, loc::MemRegionVal(VR)); in VisitCluster()
1396 SVal RegionStoreManager::getBinding(RegionBindingsConstRef B, Loc L, QualType T) { in getBinding() function in RegionStoreManager
2488 SVal V = getBinding(B.asStore(), *MRV, R->getValueType()); in bindArray()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h235 unsigned char getBinding() const { return st_info >> 4; } in getBinding() function
H A DELFHeader.cpp317 bindingToCString(getBinding()), typeToCString(getType()), st_other, in Dump()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.cpp103 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) { in HexagonMCEmitCommonSymbol()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h191 switch (Sym.getBinding()) { in getSymbolLinkageAndScope()
205 Twine(static_cast<int>(Sym.getBinding())) + " for " + Name, in getSymbolLinkageAndScope()
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h74 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
H A DProgramState.h823 return getStateManager().StoreMgr->getBinding(getStore(), LV, T); in getRawSVal()
827 return getStateManager().StoreMgr->getBinding(getStore(), in getSVal()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DObjectFileInterface.cpp130 if (Sym.getBinding() == ELF::STB_GNU_UNIQUE) in getELFObjectFileSymbolInfo()
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVAttributes.cpp145 uint32_t spirv::InterfaceVarABIAttr::getBinding() { in getBinding() function in spirv::InterfaceVarABIAttr
637 << interfaceVarABIAttr.getBinding() << ")"; in print()
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/Transforms/
H A DLowerABIAttributesPass.cpp65 abiInfo.getBinding()); in createGlobalVarForEntryPointArgument()
/llvm-project-15.0.7/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp522 uint8_t Binding = RawSym.getBinding(); in createELFSym()
552 uint8_t Binding = RawSym.getBinding(); in populateSymbols()
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp211 if (Obj.isELF() && ELFSymbolRef(Symbol).getBinding() != ELF::STB_LOCAL) in addSymbol()
/llvm-project-15.0.7/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp151 Reloc.OriginalSymbol->getBinding() != ELF::STB_LOCAL) in getMatchingLoType()

12