Home
last modified time | relevance | path

Searched refs:readULEB128 (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dgcc_personality_v0.c71 static size_t readULEB128(const uint8_t **data) { in readULEB128() function
100 result = readULEB128(&p); in readEncodedPointer()
233 readULEB128(&lsda); in __gcc_personality_sj0()
237 size_t callSiteTableLength = readULEB128(&lsda); in __gcc_personality_sj0()
245 readULEB128(&p); // action value not used for C code in __gcc_personality_sj0()
/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.h220 inline uint64_t readULEB128(const uint8_t *&p) { return readLEB128(p, 128); } in readULEB128() function
247 ((readULEB128(p) << (7 - flagBits)) - (0x80 >> flagBits)) << shift; in step()
278 RelocsCrel(const uint8_t *p) : hdr(readULEB128(p)) { this->p = p; } in RelocsCrel()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupport.cpp216 if (auto Err = RecordReader.readULEB128(CodeAlignmentFactor)) in processCIE()
236 if (auto Err = RecordReader.readULEB128(AugmentationDataLength)) in processCIE()
391 if (auto Err = RecordReader.readULEB128(AugmentationDataSize)) in processFDE()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2956 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) { in readULEB128() function in ExportEntry
3000 uint64_t ExportInfoSize = readULEB128(State.Current, &error); in pushNode()
3020 State.Flags = readULEB128(State.Current, &error); in pushNode()
3042 State.Other = readULEB128(State.Current, &error); // dylib ordinal in pushNode()
3088 State.Address = readULEB128(State.Current, &error); in pushNode()
3097 State.Other = readULEB128(State.Current, &error); in pushNode()
3151 uint64_t childNodeIndex = readULEB128(Top.Current, &error); in pushDownUntilBottom()
3545 SegmentOffset = readULEB128(&error); in moveNext()
3570 SegmentOffset += readULEB128(&error); in moveNext()
3636 Count = readULEB128(&error); in moveNext()
[all …]
H A DWasmObjectFile.cpp115 static uint64_t readULEB128(WasmObjectFile::ReadContext &Ctx) { in readULEB128() function
126 uint32_t StringLen = readULEB128(Ctx); in readString()
160 uint64_t Result = readULEB128(Ctx); in readVaruint32()
171 return readULEB128(Ctx); in readVaruint64()
219 Expr.Inst.Value.Global = readULEB128(Ctx); in readInitExpr()
245 readULEB128(Ctx); in readInitExpr()
269 readULEB128(Ctx); // heap type index in readInitExpr()
272 readULEB128(Ctx); // heap type index in readInitExpr()
273 readULEB128(Ctx); // array size in readInitExpr()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp65 Error RawCoverageReader::readULEB128(uint64_t &Result) { in readULEB128() function in RawCoverageReader
78 if (auto Err = readULEB128(Result)) in readIntMax()
88 if (auto Err = readULEB128(Result)) in readSize()
119 if (auto Err = readULEB128(UncompressedLen)) in read()
344 if (auto Err = readULEB128(ColumnStart)) in readMappingRegionsSubArray()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h94 Error readULEB128(uint64_t &Dest);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamReader.cpp43 Error BinaryStreamReader::readULEB128(uint64_t &Dest) {
44 Error BinaryStreamReader::readULEB128(uint64_t &Dest) { readULEB128() function in BinaryStreamReader
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h93 uint64_t readULEB128(const uint8_t *&p, const char **error);
189 uint64_t readULEB128(const char **error);
240 uint64_t readULEB128(const char **error);
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h115 Error readULEB128(uint64_t &Result);