Home
last modified time | relevance | path

Searched refs:STB_LOCAL (Results 1 – 25 of 51) sorted by relevance

123

/third_party/elfio/tests/
DELFIOTest1.cpp94 nStrIndex, 0, 0, STB_LOCAL, STT_NOTYPE, 0, data_sec->get_index() ); in write_obj_i386()
614 unsigned char bind = STB_LOCAL; in TEST()
645 bind = STB_LOCAL; in TEST()
655 bind = STB_LOCAL; in TEST()
660 bind = STB_LOCAL; in TEST()
670 bind = STB_LOCAL; in TEST()
706 EXPECT_EQ( bind, (unsigned char)STB_LOCAL ); in TEST()
715 EXPECT_NE( bind, (unsigned char)STB_LOCAL ); in TEST()
726 unsigned char bind = STB_LOCAL; in TEST()
762 bind = STB_LOCAL; in TEST()
[all …]
DELFIOTest.cpp260 checkSymbol( sr, 0, "", 0x00000000, 0, STB_LOCAL, STT_NOTYPE, STN_UNDEF, in TEST()
262 checkSymbol( sr, 1, "", 0x08048114, 0, STB_LOCAL, STT_SECTION, 1, in TEST()
264 checkSymbol( sr, 39, "hello.c", 0x00000000, 0, STB_LOCAL, STT_FILE, in TEST()
372 checkSymbol( sr, 0, "", 0x00000000, 0, STB_LOCAL, STT_NOTYPE, STN_UNDEF, in TEST()
374 checkSymbol( sr, 1, "", 0x00400200, 0, STB_LOCAL, STT_SECTION, 1, in TEST()
376 checkSymbol( sr, 40, "hello.c", 0x00000000, 0, STB_LOCAL, STT_FILE, in TEST()
575 checkSymbol( sr, 8, "_GLOBAL__I_main", 0x000000DC, 60, STB_LOCAL, STT_FUNC, in TEST()
664 checkSymbol( sr, 0, "", 0x00000000, 0, STB_LOCAL, STT_NOTYPE, STN_UNDEF, in TEST()
666 checkSymbol( sr, 1, "", 0x10000134, 0, STB_LOCAL, STT_SECTION, 1, in TEST()
668 checkSymbol( sr, 40, "__CTOR_END__", 0x10010AD4, 0, STB_LOCAL, STT_OBJECT, in TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCSymbolELF.cpp47 case ELF::STB_LOCAL: in setBinding()
71 return ELF::STB_LOCAL; in getBinding()
82 return ELF::STB_LOCAL; in getBinding()
88 return ELF::STB_LOCAL; in getBinding()
DMCELFStreamer.cpp238 Symbol->setBinding(ELF::STB_LOCAL); in EmitSymbolAttribute()
301 if (Symbol->getBinding() == ELF::STB_LOCAL) { in EmitCommonSymbol()
336 Symbol->setBinding(ELF::STB_LOCAL); in EmitLocalCommonSymbol()
DELFObjectWriter.cpp650 bool Local = Symbol.getBinding() == ELF::STB_LOCAL; in computeSymbolTable()
729 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT, in computeSymbolTable()
755 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL); in computeSymbolTable()
1360 case ELF::STB_LOCAL: in shouldRelocateWithSymbol()
1517 if (SymA.getBinding() != ELF::STB_LOCAL || in isSymbolRefDifferenceFullyResolvedImpl()
/third_party/elfutils/tests/
Dasm-tst3.c121 if (asm_newsym (scn1, "two", 4, STT_OBJECT, STB_LOCAL) == NULL) in main()
270 [0] = GELF_ST_INFO (STB_LOCAL, STT_NOTYPE), in main()
271 [1] = GELF_ST_INFO (STB_LOCAL, STT_OBJECT), in main()
Ddwflsyms.c59 case STB_LOCAL: in gelf_bind()
75 case STB_LOCAL: in gelf_bind_order()
Dasm-tst8.c59 if (asm_newabssym (ctx, "tst8-out.s", 4, 0xfeedbeef, STT_FILE, STB_LOCAL) in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCELFStreamer.cpp102 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) { in HexagonMCEmitCommonSymbol()
145 ELFSymbol->setBinding(ELF::STB_LOCAL); in HexagonMCEmitLocalCommonSymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFSection.cpp106 createDefinedSym(NullSymbolName, STT_NOTYPE, STB_LOCAL, NullSection, 0, 0); in createNullSymbol()
121 if (Binding == STB_LOCAL) in createDefinedSym()
DIceELFObjectWriter.cpp246 SymbolBinding = STB_LOCAL; in writeFunctionCode()
403 const uint8_t SymbolBinding = IsExternal ? STB_GLOBAL : STB_LOCAL; in writeDataOfType()
545 SymTab->createDefinedSym(SymName, STT_NOTYPE, STB_LOCAL, Section, in writeConstantPool()
593 const uint8_t SymbolBinding = IsExternal ? STB_GLOBAL : STB_LOCAL; in writeJumpTable()
/third_party/elfutils/backends/
Darm_symbol.c157 && sym->st_size == 0 && GELF_ST_BIND (sym->st_info) == STB_LOCAL in arm_data_marker_symbol()
Daarch64_symbol.c107 && sym->st_size == 0 && GELF_ST_BIND (sym->st_info) == STB_LOCAL in aarch64_data_marker_symbol()
/third_party/elfutils/libasm/
Dasm_newsym.c62 if (binding != STB_LOCAL) in asm_newsym()
Dasm_end.c201 int ptr = sym->binding == STB_LOCAL ? ptr_local++ : ptr_nonlocal--; in binary_end()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64ELFStreamer.cpp175 Symbol->setBinding(ELF::STB_LOCAL); in EmitMappingSymbol()
/third_party/elfio/elfio/
Delfio_symbols.hpp519 if ( ELF_ST_BIND( convertor( p1->st_info ) ) != STB_LOCAL ) in generic_arrange_local_symbols()
527 if ( ELF_ST_BIND( convertor( p2->st_info ) ) == STB_LOCAL ) in generic_arrange_local_symbols()
/third_party/elfutils/src/
Dnm.c881 int local_p = GELF_ST_BIND (sym->st_info) == STB_LOCAL; in class_type_char()
1359 || (hide_local && GELF_ST_BIND (sym->st_info) == STB_LOCAL)) in show_symbols()
1386 && GELF_ST_BIND (sym->st_info) != STB_LOCAL in show_symbols()
Dunstrip.c675 .st_info = GELF_ST_INFO (STB_LOCAL, STT_SECTION), in add_new_section_symbols()
934 cmp = ((GELF_ST_BIND (s2->info.info) == STB_LOCAL) in compare_symbols_output()
935 - (GELF_ST_BIND (s1->info.info) == STB_LOCAL)); in compare_symbols_output()
1981 if (GELF_ST_BIND (sym.st_info) == STB_LOCAL) in copy_elided_sections()
/third_party/vixl/examples/aarch32/
Ddisasm-a32.cc141 ((ELF32_ST_BIND(sym[snum].st_info) == STB_LOCAL) || in LocateSymbols()
/third_party/elfutils/libdwfl/
Ddwfl_module_addrsym.c122 case STB_LOCAL: in binding_value()
/third_party/elfio/c_wrapper/
Delf_types_c_wrapper.hpp510 #define STB_LOCAL 0 macro
/third_party/libbpf/src/
Dlinker.c802 if (sym_bind != STB_LOCAL && sym_bind != STB_GLOBAL && sym_bind != STB_WEAK) { in linker_sanity_check_elf_symtab()
813 if (sym_type != STT_NOTYPE || sym_bind == STB_LOCAL in linker_sanity_check_elf_symtab()
1846 if (sym_bind == STB_LOCAL) in linker_append_elf_sym()
1986 if (sym_bind != STB_LOCAL) { in linker_append_elf_sym()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMELFStreamer.cpp654 Symbol->setBinding(ELF::STB_LOCAL); in EmitMappingSymbol()
664 Symbol->setBinding(ELF::STB_LOCAL); in EmitMappingSymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/
DMipsELFObjectWriter.cpp151 Reloc.OriginalSymbol->getBinding() != ELF::STB_LOCAL) in getMatchingLoType()

123