Home
last modified time | relevance | path

Searched refs:StName (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dsymbol-name.yaml19 - StName: 1
20 - StName: 2
24 ## Check we allow specifying both Name and StName at once.
25 ## In this case StName has priority, but the symbol Name is still added
82 StName: 0
/llvm-project-15.0.7/llvm/test/CodeGen/NVPTX/
H A Dstore-retval.ll11 ; #define DECLARE_FUNC(StName) \
12 ; struct StName func_##StName(struct StName in) { \
13 ; struct StName ret; \
H A Dparam-vectorize-device.ll29 ; #define DECLARE_CALLEE(StName) \
31 ; struct StName callee_##StName(struct StName in) { \
32 ; struct StName ret; \
39 ; #define DECLARE_CALLER(StName) \
41 ; void caller_##StName(struct StName in, struct StName* ret) \
43 ; *ret = callee_##StName(in); \
46 ; #define DECLARE_CALL(StName) \
47 ; DECLARE_CALLEE(StName) \
48 ; DECLARE_CALLER(StName) \
H A Dparam-vectorize-kernel.ll28 ; #define DECLARE_FUNCTION(StName) \
30 ; void foo_##StName(struct StName in, struct StName* ret) { \
/llvm-project-15.0.7/lld/test/ELF/invalid/
H A Dsymbol-name.test15 - StName: 255
/llvm-project-15.0.7/llvm/test/DebugInfo/Symbolize/ELF/
H A Dsymtab-file2.yaml71 - StName: 0xffff
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dcall-graph-profile.test126 - StName: 1 ## 'A'
127 - StName: 0xFF ## An arbitrary currupted index in the string table.
128 - StName: 3 ## 'B'
H A Dgroups.test91 StName: [[SYM1STNAME=<none>]]
94 StName: [[SYM2STNAME=<none>]]
H A Ddyn-symbols.test712 - StName: 0xffffff00
714 - StName: 0x1
H A Dbroken-dynamic-reloc.test45 - StName: 0x1234
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ELF/AArch64/
H A Dplt.test70 StName: [[ST_NAME=<none>]]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h146 Optional<uint32_t> StName; member
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp949 if (Sym.StName) in toELFSymbols()
950 Symbol.st_name = *Sym.StName; in toELFSymbols()
H A DELFYAML.cpp1286 IO.mapOptional("StName", Symbol.StName); in mapping()