/arkcompiler/ets_runtime/ecmascript/dfx/dump_code/ |
H A D | jit_dump_elf.h | 182 class SymbolSection : public Section { class 184 SymbolSection(const std::string &name, maplebe::Word type, maplebe::Xword flags, maplebe::Xword align, in SymbolSection() function in panda::ecmascript::SymbolSection 193 ~SymbolSection() = default; 249 }; /* class SymbolSection */ 350 SymbolSection *symbolTabSection = nullptr;
|
H A D | jit_dump_elf.cpp | 128 symbolTabSection = new SymbolSection(".symtab", SHT_SYMTAB, 0, k8Bits, *strTabSection); in Init()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
H A D | elf_file.h | 244 class SymbolSection : public Section { class 246 SymbolSection(const std::string &name, Word type, Xword flags, Xword align, const Section &link) in SymbolSection() function in assembler::SymbolSection 255 ~SymbolSection() = default; 306 }; /* class SymbolSection */
|
H A D | elf_assembler.h | 622 SymbolSection *symbolTabSection = nullptr;
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | ifile.h | 355 class SymbolSection : public Section { class 357 SymbolSection(const std::string &name, Word type, Word flags, Word align, ObjEmitter &emitter, MemPool &memPool, in SymbolSection() function in maplebe::SymbolSection 367 ~SymbolSection() = default;
|
H A D | obj_emit.h | 551 SymbolSection *symbolTabSection = nullptr;
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | elf_builder.h | 222 class SymbolSection : public Section { class in ark::compiler::ElfBuilder 228 SymbolSection(ElfBuilder &builder, const std::string &name, Section *link, const ElfShdrParams ¶ms) in SymbolSection() function in ark::compiler::ElfBuilder::SymbolSection 314 typename SymbolSection::ThunkFunc thunk); 523 SymbolSection dynsymSection_ = // NOLINTNEXTLINE(hicpp-signed-bitwise) 524 SymbolSection(*this, ".dynsym", &dynstrSection_, {SHT_DYNSYM, SHF_ALLOC, 1, sizeof(ElfOff), sizeof(ElfSym)}); 546 typename SymbolSection::ThunkFunc thunk) in AddSymbol() 576 void ElfBuilder<ARCH, IS_JIT_MODE>::SymbolSection::Resolve() in Resolve()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
H A D | aarch64_obj_emitter.cpp | 236 memPool->New<SymbolSection>(".symtab", SHT_SYMTAB, 0, sizeof(Symbol), *this, *memPool, *strTabSection);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | elf_assembler.cpp | 46 symbolTabSection = new SymbolSection(".symtab", SHT_SYMTAB, 0, k8Bits, *strTabSection); in InitialFileInfo()
|