Home
last modified time | relevance | path

Searched refs:read16 (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/AVR/
H A Dio.ll10 define i16 @read16() {
11 ; CHECK-LABEL: read16
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DEndian.h360 inline uint16_t read16(const void *P, endianness E) { in read16() function
370 template <endianness E> inline uint16_t read16(const void *P) { in read16() function
380 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le()
383 inline uint16_t read16be(const void *P) { return read16<big>(P); } in read16be()
/llvm-project-15.0.7/lld/ELF/
H A DTarget.h282 inline uint16_t read16(const void *p) { in read16() function
283 return llvm::support::endian::read16(p, config->endianness); in read16()
H A DSyntheticSections.cpp591 return read16(buf); in readFdeAddr()
593 return (int16_t)read16(buf); in readFdeAddr()
/llvm-project-15.0.7/lld/ELF/Arch/
H A DMips.cpp252 uint16_t instr = read16(loc); in writeMicroRelocation16()
446 return SignExtend64<8>(read16(buf) << 1); in getImplicitAddend()
448 return SignExtend64<11>(read16(buf) << 1); in getImplicitAddend()
H A DPPC64.cpp1234 write16(loc, (read16(loc) & mask) | lo(val)); in relocate()
1306 write16(loc, (read16(loc) & mask) | lo(val)); in relocate()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1014 << format_hex(support::endian::read16(Bytes.data() + Index, Endian), 6); in dumpARMELFData()