Home
last modified time | relevance | path

Searched refs:SymbolType (Results 1 – 25 of 42) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h55 Symbol *FindSymbolWithType(lldb::SymbolType symbol_type,
64 uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
69 lldb::SymbolType symbol_type, uint32_t flags_value,
72 uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
85 lldb::SymbolType symbol_type,
94 lldb::SymbolType symbol_type,
97 const RegularExpression &regex, lldb::SymbolType symbol_type,
101 lldb::SymbolType symbol_type,
104 lldb::SymbolType symbol_type,
109 const RegularExpression &regex, lldb::SymbolType symbol_type,
[all …]
H A DSymbol.h27 Symbol(uint32_t symID, llvm::StringRef name, lldb::SymbolType type,
33 Symbol(uint32_t symID, const Mangled &mangled, lldb::SymbolType type,
44 bool Compare(ConstString name, lldb::SymbolType type) const;
143 lldb::SymbolType GetType() const { return (lldb::SymbolType)m_type; } in GetType()
145 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType()
H A DObjectFile.h662 static lldb::SymbolType GetSymbolTypeFromName(
664 lldb::SymbolType symbol_type_hint = lldb::eSymbolTypeUndefined);
/freebsd-13.1/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DIFSStub.cpp83 uint8_t ifs::convertIFSSymbolTypeToELF(IFSSymbolType SymbolType) { in convertIFSSymbolTypeToELF() argument
84 switch (SymbolType) { in convertIFSSymbolTypeToELF()
119 IFSSymbolType ifs::convertELFSymbolTypeToIFS(uint8_t SymbolType) { in convertELFSymbolTypeToIFS() argument
120 SymbolType = SymbolType & 0xf; in convertELFSymbolTypeToIFS()
121 switch (SymbolType) { in convertELFSymbolTypeToIFS()
H A DIFSHandler.cpp29 static void enumeration(IO &IO, IFSSymbolType &SymbolType) { in enumeration()
30 IO.enumCase(SymbolType, "NoType", IFSSymbolType::NoType); in enumeration()
31 IO.enumCase(SymbolType, "Func", IFSSymbolType::Func); in enumeration()
32 IO.enumCase(SymbolType, "Object", IFSSymbolType::Object); in enumeration()
33 IO.enumCase(SymbolType, "TLS", IFSSymbolType::TLS); in enumeration()
34 IO.enumCase(SymbolType, "Unknown", IFSSymbolType::Unknown); in enumeration()
37 SymbolType = IFSSymbolType::Unknown; in enumeration()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp83 auto SymbolType = Symbol.getType(); in fromObjectSymbol() local
84 if (!SymbolType) in fromObjectSymbol()
85 return SymbolType.takeError(); in fromObjectSymbol()
87 if (*SymbolType & object::SymbolRef::ST_Function) in fromObjectSymbol()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp323 const SymbolType type = symbol->GetType(); in InitNameIndexes()
482 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type, in AppendSymbolIndexesWithType()
501 SymbolType symbol_type, uint32_t flags_value, in AppendSymbolIndexesWithTypeAndFlagsValue()
520 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type, in AppendSymbolIndexesWithType()
704 SymbolType symbol_type, in AppendSymbolIndexesWithNameAndType()
722 ConstString symbol_name, SymbolType symbol_type, in AppendSymbolIndexesWithNameAndType()
742 const RegularExpression &regexp, SymbolType symbol_type, in AppendSymbolIndexesMatchingRegExAndType()
763 const RegularExpression &regexp, SymbolType symbol_type, in AppendSymbolIndexesMatchingRegExAndType()
787 Symbol *Symtab::FindSymbolWithType(SymbolType symbol_type, in FindSymbolWithType()
808 SymbolType symbol_type, in FindAllSymbolsWithNameAndType()
[all …]
H A DSymbol.cpp33 Symbol::Symbol(uint32_t symID, llvm::StringRef name, SymbolType type, bool external, in Symbol()
48 Symbol::Symbol(uint32_t symID, const Mangled &mangled, SymbolType type, in Symbol()
332 bool Symbol::Compare(ConstString name, SymbolType type) const { in Compare()
H A DObjectFile.cpp377 const SymbolType symbol_type = symbol->GetType(); in GetAddressClass()
599 lldb::SymbolType
601 lldb::SymbolType symbol_type_hint) { in GetSymbolTypeFromName()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/InterfaceStub/
H A DIFSStub.h131 uint8_t convertIFSSymbolTypeToELF(IFSSymbolType SymbolType);
153 IFSSymbolType convertELFSymbolTypeToIFS(uint8_t SymbolType);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionXCOFF.h43 XCOFF::SymbolType ST, SectionKind K, MCSymbolXCOFF *QualName, in MCSectionXCOFF()
98 XCOFF::SymbolType getCSectType() const { in getCSectType()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBSymbol.cpp179 SymbolType SBSymbol::GetType() { in GetType()
180 LLDB_RECORD_METHOD_NO_ARGS(lldb::SymbolType, SBSymbol, GetType); in GetType()
229 LLDB_REGISTER_METHOD(lldb::SymbolType, SBSymbol, GetType, ()); in RegisterMethods()
H A DSBModule.cpp316 lldb::SymbolType symbol_type) { in FindSymbol()
318 (const char *, lldb::SymbolType), name, symbol_type); in FindSymbol()
333 lldb::SymbolType symbol_type) { in FindSymbols()
335 (const char *, lldb::SymbolType), name, symbol_type); in FindSymbols()
741 (const char *, lldb::SymbolType)); in RegisterMethods()
743 (const char *, lldb::SymbolType)); in RegisterMethods()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModule.h143 lldb::SymbolType type = eSymbolTypeAny);
146 lldb::SymbolType type = eSymbolTypeAny);
H A DSBSymbol.h50 SymbolType GetType();
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp169 SymbolRef::Type SymbolType = *SymbolTypeOrErr; in addSymbol() local
182 } else if (SymbolType != SymbolRef::ST_Function && in addSymbol()
183 SymbolType != SymbolRef::ST_Data) { in addSymbol()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h249 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
252 lldb::SymbolType symbol_type,
256 lldb::SymbolType symbol_type,
H A DModuleList.h324 lldb::SymbolType symbol_type,
328 lldb::SymbolType symbol_type,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.h244 ConstString name, lldb::SymbolType symbol_type,
248 lldb::SymbolType symbol_type);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbol.i55 SymbolType
H A DSBModule.i228 lldb::SymbolType type = eSymbolTypeAny);
232 lldb::SymbolType type = eSymbolTypeAny);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h52 lldb::SymbolType symbol_type) const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp41 auto SymbolType = getSymbolType(Symbol); in getTypeLength() local
42 const IPDBRawSymbol &RawType = SymbolType->getRawSymbol(); in getTypeLength()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h458 support::ubig16_t SymbolType;
472 support::ubig16_t SymbolType;
507 uint16_t getSymbolType() const { return GETVALUE(SymbolType); }
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp160 QualType SymbolType = LHS->getType(); in MakeSymIntVal() local
162 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType); in MakeSymIntVal()
166 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS); in MakeSymIntVal()
171 if (RHS.isSigned() && !SymbolType->isSignedIntegerOrEnumerationType()) in MakeSymIntVal()
172 ConvertedRHS = &BasicVals.Convert(SymbolType, RHS); in MakeSymIntVal()

12