|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Object/ELFObjectFile.h 500 uint64_t Ret = ESym->st_value;
547 return Sym->st_value;
643 if (ESym->getType() == ELF::STT_FUNC && (ESym->st_value & 1) == 1)
include/llvm/Object/ELFTypes.h 197 uint64_t getValue() const { return st_value; }
lib/ObjectYAML/ELFEmitter.cpp 514 Symbol.st_value = Sym.Value;
tools/lld/ELF/InputFiles.cpp 1006 uint64_t value = eSym.st_value;
1144 if (sym.st_value)
1145 ret = 1ULL << countTrailingZeros((uint64_t)sym.st_value);
1288 sym.st_other, sym.getType(), sym.st_value,
1310 sym.st_other, sym.getType(), sym.st_value,
tools/lld/ELF/Relocations.cpp 486 s.getType() == STT_TLS || s.st_value != ss.value)
tools/lld/ELF/SyntheticSections.cpp 2156 eSym->st_value = commonSec->alignment;
2158 eSym->st_value = sym->getVA();
2160 eSym->st_value = 0;
2187 eSym->st_value &= ~1;
tools/llvm-objcopy/ELF/Object.cpp 786 Sym->st_value = Symbol->Value;
tools/llvm-objdump/llvm-objdump.cpp 915 Address = Obj->getSymbol(Symbol.getRawDataRefImpl())->st_value;
tools/llvm-readobj/ARMEHABIPrinter.h 377 if (Sym.st_shndx == Section && Sym.st_value == Address &&
tools/llvm-readobj/ELFDumper.cpp 3328 format_hex_no_prefix(Symbol->st_value, ELFT::Is64Bits ? 16 : 8));
3368 format_hex_no_prefix(Symbol->st_value, ELFT::Is64Bits ? 16 : 8));
5044 OS << to_string(format_hex_no_prefix(Sym->st_value, 8 + Bias));
5094 OS << to_string(format_hex_no_prefix(Sym->st_value, 8 + Bias));
5443 W.printHex("Value", Symbol->st_value);
6017 W.printHex("Value", Sym->st_value);
6067 W.printHex("Value", Sym->st_value);
tools/obj2yaml/elf2yaml.cpp 380 S.Value = Sym->st_value;