Searched refs:symbol_type (Results 1 - 18 of 18) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymtab.h59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
60 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
61 uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
65 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
67 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes);
68 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes);
69 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, std::vector<uint32_t>& symbol_indexes);
70 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debu
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp309 const SymbolType symbol_type = symbol->GetType(); local
310 if (symbol_type == eSymbolTypeCode || symbol_type == eSymbolTypeResolver)
482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
492 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type)
500 Symtab::AppendSymbolIndexesWithTypeAndFlagsValue (SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
510 if ((symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) && m_symbols[i].GetFlags() == flags_value)
518 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, Debu argument
673 AppendSymbolIndexesWithNameAndType(const ConstString& symbol_name, SymbolType symbol_type, std::vector<uint32_t>& indexes) argument
692 AppendSymbolIndexesWithNameAndType(const ConstString& symbol_name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes) argument
712 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression &regexp, SymbolType symbol_type, std::vector<uint32_t>& indexes) argument
736 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression &regexp, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes) argument
763 FindSymbolWithType(SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t& start_idx) argument
783 FindAllSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, std::vector<uint32_t>& symbol_indexes) argument
803 FindAllSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes) argument
823 FindAllSymbolsMatchingRexExAndType(const RegularExpression &regex, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes) argument
832 FindFirstSymbolWithNameAndType(const ConstString &name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility) argument
[all...]
H A DObjectFile.cpp395 const SymbolType symbol_type = symbol->GetType(); local
396 switch (symbol_type)
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DClangExpressionDeclMap.h304 lldb::SymbolType symbol_type,
309 lldb::SymbolType symbol_type);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModule.h216 /// @param[in] symbol_type
220 /// symbols that match \a symbol_type.
228 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
232 lldb::SymbolType symbol_type,
237 lldb::SymbolType symbol_type,
H A DModuleList.h390 lldb::SymbolType symbol_type,
396 lldb::SymbolType symbol_type,
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DModule.cpp1246 Module::FindFirstSymbolWithNameAndType (const ConstString &name, SymbolType symbol_type) argument
1251 symbol_type);
1257 return symtab->FindFirstSymbolWithNameAndType (name, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny);
1301 Module::FindSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list) argument
1310 symbol_type);
1319 symtab->FindAllSymbolsWithNameAndType (name, symbol_type, symbol_indexes);
1327 Module::FindSymbolsMatchingRegExAndType (const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list) argument
1335 symbol_type);
1344 symtab->FindAllSymbolsMatchingRexExAndType (regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny, symbol_indexes);
H A DModuleList.cpp517 SymbolType symbol_type,
528 (*pos)->FindSymbolsWithNameAndType (name, symbol_type, sc_list);
534 lldb::SymbolType symbol_type,
545 (*pos)->FindSymbolsMatchingRegExAndType (regex, symbol_type, sc_list);
516 FindSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list, bool append) const argument
533 FindSymbolsMatchingRegExAndType(const RegularExpression &regex, lldb::SymbolType symbol_type, SymbolContextList &sc_list, bool append) const argument
/freebsd-10-stable/contrib/gdb/gdb/
H A Dsomread.c141 switch (bufp->symbol_type)
192 switch (bufp->symbol_type)
272 switch (bufp->symbol_type)
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1127 SymbolType symbol_type = eSymbolTypeInvalid; local
1133 symbol_type = eSymbolTypeAbsolute;
1136 symbol_type = eSymbolTypeUndefined;
1144 if (symbol_type != eSymbolTypeUndefined)
1156 symbol_type = eSymbolTypeData;
1161 symbol_type = eSymbolTypeCode;
1175 symbol_type = eSymbolTypeSourceFile;
1181 symbol_type = eSymbolTypeResolver;
1186 if (symbol_type == eSymbolTypeInvalid)
1197 symbol_type
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp376 lldb::SymbolType symbol_type)
384 sb_symbol.SetSymbol(symtab->FindFirstSymbolWithNameAndType(ConstString(name), symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny));
391 SBModule::FindSymbols (const char *name, lldb::SymbolType symbol_type) argument
401 const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, matching_symbol_indexes);
375 FindSymbol(const char *name, lldb::SymbolType symbol_type) argument
H A DSBTarget.cpp2596 SBTarget::FindSymbols (const char *name, lldb::SymbolType symbol_type) argument
2606 symbol_type, local
/freebsd-10-stable/contrib/gcc/
H A Dmips-tdump.c375 st_to_string (st_t symbol_type)
377 switch(symbol_type)
878 st_t symbol_type = (st_t) sym_ptr->st;
886 switch (symbol_type)
905 scope_ptr->st = symbol_type;
959 scope_ptr->st = symbol_type;
1022 st_to_string (symbol_type), sc_to_string (storage_class));
369 st_to_string(st_t symbol_type) argument
867 st_t symbol_type = (st_t) sym_ptr->st; local
H A Dmips-tfile.c2560 st_to_string (st_t symbol_type)
2562 switch (symbol_type)
2795 st_t symbol_type = st_Nil;
2978 if (symbol_type == st_Nil)
2980 symbol_type = map_coff_sym_type[arg_number];
3137 symbol_type = (st_t) ptr->st;
3202 if (symbol_type == st_Block || symbol_type == st_End)
3251 switch (symbol_type)
3307 symbol_type, storage_clas
2535 st_to_string(st_t symbol_type) argument
2766 st_t symbol_type = st_Nil; local
[all...]
/freebsd-10-stable/contrib/gcc/config/mips/
H A Dmips.c512 enum mips_symbol_type symbol_type; member in struct:mips_address_info
1354 mips_symbolic_constant_p (rtx x, enum mips_symbol_type *symbol_type)
1360 *symbol_type = UNSPEC_ADDRESS_TYPE (x);
1363 *symbol_type = mips_classify_symbol (x);
1364 if (*symbol_type == SYMBOL_TLS)
1375 switch (*symbol_type)
1486 mips_symbolic_address_p (enum mips_symbol_type symbol_type,
1489 switch (symbol_type)
1564 info->symbol_type = mips_classify_symbolic_expression (info->offset);
1566 && mips_symbolic_address_p (info->symbol_type, mod
1350 mips_symbolic_constant_p(rtx x, enum mips_symbol_type *symbol_type) argument
1482 mips_symbolic_address_p(enum mips_symbol_type symbol_type, enum machine_mode mode) argument
1809 enum mips_symbol_type symbol_type; local
1957 mips_unspec_address(rtx address, enum mips_symbol_type symbol_type) argument
1976 mips_unspec_offset_high(rtx temp, rtx base, rtx addr, enum mips_symbol_type symbol_type) argument
2139 enum mips_symbol_type symbol_type; local
5692 enum mips_symbol_type symbol_type; local
6134 enum mips_symbol_type symbol_type; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/
H A DClangExpressionDeclMap.cpp617 lldb::SymbolType symbol_type,
623 module->FindSymbolsWithNameAndType(name, symbol_type, sc_list);
625 target.GetImages().FindSymbolsWithNameAndType(name, symbol_type, sc_list);
670 symbol_load_addr = GetSymbolAddress(target, process, sym_ctx.symbol->GetReExportedSymbolName(), symbol_type, reexport_module_sp.get());
720 ClangExpressionDeclMap::GetSymbolAddress (const ConstString &name, lldb::SymbolType symbol_type) argument
727 return GetSymbolAddress(m_parser_vars->m_exe_ctx.GetTargetRef(), m_parser_vars->m_exe_ctx.GetProcessPtr(), name, symbol_type);
614 GetSymbolAddress(Target &target, Process *process, const ConstString &name, lldb::SymbolType symbol_type, lldb_private::Module *module) argument
H A DIRForTarget.cpp1595 Type *symbol_type = symbol->getType(); local
1599 Value *symbol_addr_ptr = ConstantExpr::getIntToPtr(symbol_addr_int, symbol_type);
/freebsd-10-stable/contrib/binutils/gas/
H A Decoff.c1436 static char *st_to_string (st_t symbol_type);
2390 st_to_string (symbol_type)
2391 st_t symbol_type;
2393 switch (symbol_type)

Completed in 384 milliseconds