Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/builtins/
Dgcc_personality_v0.c56 static size_t readULEB128(const uint8_t **data) { in readULEB128() function
85 result = readULEB128(&p); in readEncodedPointer()
218 readULEB128(&lsda); in __gcc_personality_sj0()
222 uint32_t callSiteTableLength = readULEB128(&lsda); in __gcc_personality_sj0()
230 readULEB128(&p); // action value not used for C code in __gcc_personality_sj0()
/openbsd/src/gnu/llvm/libcxxabi/src/
Dcxa_personality.cpp207 readULEB128(const uint8_t** data) in readULEB128() function
270 result = readULEB128(&p); in readEncodedPointer()
498 uint64_t ttypeIndex = readULEB128(&temp); in exception_spec_can_catch()
673 uintptr_t classInfoOffset = readULEB128(&lsda); in scan_eh_tab()
682 uint32_t callSiteTableLength = static_cast<uint32_t>(readULEB128(&lsda)); in scan_eh_tab()
696 uintptr_t actionEntry = readULEB128(&callSitePtr); in scan_eh_tab()
700 uintptr_t landingPad = readULEB128(&callSitePtr); in scan_eh_tab()
701 uintptr_t actionEntry = readULEB128(&callSitePtr); in scan_eh_tab()
1229 uintptr_t classInfoOffset = readULEB128(&lsda); in __cxa_call_unexpected()
/openbsd/src/gnu/llvm/llvm/lib/Object/
DMachOObjectFile.cpp2949 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) { in readULEB128() function in ExportEntry
2993 uint64_t ExportInfoSize = readULEB128(State.Current, &error); in pushNode()
3013 State.Flags = readULEB128(State.Current, &error); in pushNode()
3035 State.Other = readULEB128(State.Current, &error); // dylib ordinal in pushNode()
3081 State.Address = readULEB128(State.Current, &error); in pushNode()
3090 State.Other = readULEB128(State.Current, &error); in pushNode()
3144 uint64_t childNodeIndex = readULEB128(Top.Current, &error); in pushDownUntilBottom()
3536 SegmentOffset = readULEB128(&error); in moveNext()
3561 SegmentOffset += readULEB128(&error); in moveNext()
3627 Count = readULEB128(&error); in moveNext()
[all …]
DWasmObjectFile.cpp102 static uint64_t readULEB128(WasmObjectFile::ReadContext &Ctx) { in readULEB128() function
113 uint32_t StringLen = readULEB128(Ctx); in readString()
147 uint64_t Result = readULEB128(Ctx); in readVaruint32()
158 return readULEB128(Ctx); in readVaruint64()
185 Expr.Inst.Value.Global = readULEB128(Ctx); in readInitExpr()
188 wasm::ValType Ty = static_cast<wasm::ValType>(readULEB128(Ctx)); in readInitExpr()
216 readULEB128(Ctx); in readInitExpr()
/openbsd/src/gnu/llvm/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp334 static uintptr_t readULEB128(const uint8_t **data) { in readULEB128() function
424 result = readULEB128(&p); in readEncodedPointer()
637 classInfoOffset = readULEB128(&lsda); in handleLsda()
645 uint32_t callSiteTableLength = readULEB128(&lsda); in handleLsda()
661 uintptr_t actionEntry = readULEB128(&callSitePtr); in handleLsda()
/openbsd/src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp228 if (auto Err = RecordReader.readULEB128(CodeAlignmentFactor)) in processCIE()
248 if (auto Err = RecordReader.readULEB128(AugmentationDataLength)) in processCIE()
402 if (auto Err = RecordReader.readULEB128(AugmentationDataSize)) in processFDE()
/openbsd/src/gnu/llvm/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp65 Error RawCoverageReader::readULEB128(uint64_t &Result) { in readULEB128() function in RawCoverageReader
77 if (auto Err = readULEB128(Result)) in readIntMax()
85 if (auto Err = readULEB128(Result)) in readSize()
114 if (auto Err = readULEB128(UncompressedLen)) in read()
300 if (auto Err = readULEB128(ColumnStart)) in readMappingRegionsSubArray()
/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DBinaryStreamReader.h96 Error readULEB128(uint64_t &Dest);
/openbsd/src/gnu/llvm/llvm/lib/Support/
DBinaryStreamReader.cpp44 Error BinaryStreamReader::readULEB128(uint64_t &Dest) { in readULEB128() function in BinaryStreamReader
/openbsd/src/gnu/llvm/llvm/include/llvm/Object/
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);
/openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingReader.h115 Error readULEB128(uint64_t &Result);