Searched refs:getULEB128 (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.cpp19 return extract(data, offset_ptr, data.getULEB128(offset_ptr));
28 Tag = data.getULEB128(offset_ptr);
32 uint16_t attr = data.getULEB128(offset_ptr);
33 uint16_t form = data.getULEB128(offset_ptr);
H A DDWARFDebugLine.cpp203 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
204 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
205 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
246 uint64_t len = debug_line_data.getULEB128(offset_ptr);
298 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
299 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
300 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
325 state.Address += debug_line_data.getULEB128(offset_ptr) *
338 state.File = debug_line_data.getULEB128(offset_ptr);
344 state.Column = debug_line_data.getULEB128(offset_pt
[all...]
H A DDWARFDebugInfoEntry.cpp29 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
102 uint64_t abbrCode = debug_info_data.getULEB128(offset_ptr);
131 form_size = debug_info_data.getULEB128(&offset);
190 debug_info_data.getULEB128(&offset);
195 form = debug_info_data.getULEB128(&offset);
232 uint64_t abbrCode = debug_info_data.getULEB128(&offset);
268 form_size = debug_info_data.getULEB128(&offset);
330 debug_info_data.getULEB128(&offset);
334 form = debug_info_data.getULEB128(&offset);
392 debug_info_data.getULEB128(
[all...]
H A DDWARFFormValue.cpp106 Value.uval = data.getULEB128(offset_ptr);
146 Value.uval = data.getULEB128(offset_ptr);
156 Form = data.getULEB128(offset_ptr);
205 uint64_t size = debug_info_data.getULEB128(offset_ptr);
272 debug_info_data.getULEB128(offset_ptr);
277 form = debug_info_data.getULEB128(offset_ptr);
/macosx-10.10.1/libunwind-35.3/src/
H A DDwarfParser.hpp187 uintptr_t augLen = addressSpace.getULEB128(p, nextCFI);
254 uintptr_t augLen = addressSpace.getULEB128(p, nextCFI);
343 cieInfo->codeAlignFactor = addressSpace.getULEB128(p, cieContentEnd);
347 addressSpace.getULEB128(p, cieContentEnd);
352 addressSpace.getULEB128(p, cieContentEnd);
473 uintptr_t augLen = addressSpace.getULEB128(p, nextCFI);
557 reg = addressSpace.getULEB128(p, instructionsEnd);
558 offset = addressSpace.getULEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
570 reg = addressSpace.getULEB128(p, instructionsEnd);;
579 reg = addressSpace.getULEB128(
[all...]
H A DAddressSpace.hpp96 static uint64_t getULEB128(pint_t& addr, pint_t end);
118 LocalAddressSpace::getULEB128(pint_t& addr, pint_t end) function in class:libunwind::LocalAddressSpace
179 result = getULEB128(addr, end);
299 uint64_t getULEB128(pint_t& addr, pint_t end);
343 uint64_t OtherAddressSpace<P>::getULEB128(pint_t& addr, pint_t end) function in class:libunwind::OtherAddressSpace
348 uint64_t result = LocalAddressSpace::getULEB128(laddr, laddr+size);
H A DDwarfInstructions.hpp230 uintptr_t augLen = addressSpace.getULEB128(p, nextCFI);
434 uint64_t length = addressSpace.getULEB128(p, expressionEnd);
533 value = addressSpace.getULEB128(p, expressionEnd);
660 *sp += addressSpace.getULEB128(p, expressionEnd);
815 reg = addressSpace.getULEB128(p, expressionEnd);
859 reg = addressSpace.getULEB128(p, expressionEnd);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DDataExtractor.h331 uint64_t getULEB128(uint32_t *offset_ptr) const;
/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DDataExtractorTest.cpp105 EXPECT_EQ(9382ULL, DE.getULEB128(&offset));
113 EXPECT_EQ(42218325750568106ULL, BDE.getULEB128(&offset));
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DDataExtractor.cpp131 uint64_t DataExtractor::getULEB128(uint32_t *offset_ptr) const { function in class:DataExtractor
/macosx-10.10.1/llvmCore-3425.0.34/lib/Object/
H A DMachOObject.cpp380 while (uint64_t delta = extractor.getULEB128(&offset)) {

Completed in 94 milliseconds