Home
last modified time | relevance | path

Searched refs:funcStart (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/lld/wasm/
H A DInputChunks.cpp277 const uint8_t *funcStart = secStart + getInputSectionOffset(); in calculateSize() local
279 decodeULEB128(funcStart, &functionSizeLength); in calculateSize()
314 const uint8_t *funcStart = secStart + getInputSectionOffset(); in writeCompressed() local
315 const uint8_t *end = funcStart + function->Size; in writeCompressed()
318 decodeULEB128(funcStart, &count); in writeCompressed()
319 funcStart += count; in writeCompressed()
323 const uint8_t *lastRelocEnd = funcStart; in writeCompressed()
/openbsd-src/gnu/llvm/compiler-rt/lib/builtins/
H A Dgcc_personality_v0.c208 uintptr_t funcStart = (uintptr_t)_Unwind_GetRegionStart(context); in __gcc_personality_sj0() local
209 uintptr_t pcOffset = pc - funcStart; in __gcc_personality_sj0()
241 _Unwind_SetIP(context, (funcStart + landingPad)); in __gcc_personality_sj0()
/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwindCursor.hpp1748 pint_t funcStart = 0; in getInfoFromCompactEncodingSection() local
1788 funcStart = pageIndex.functionOffset(low) + sects.dso_base; in getInfoFromCompactEncodingSection()
1789 if (pc < funcStart) { in getInfoFromCompactEncodingSection()
1794 (uint64_t) pc, (uint64_t) funcStart, (uint64_t) funcEnd); in getInfoFromCompactEncodingSection()
1802 (uint64_t) pc, (uint64_t) funcStart, (uint64_t) funcEnd); in getInfoFromCompactEncodingSection()
1836 funcStart = pageIndex.functionOffset(low) + firstLevelFunctionOffset in getInfoFromCompactEncodingSection()
1844 if (pc < funcStart) { in getInfoFromCompactEncodingSection()
1848 (uint64_t) pc, (uint64_t) funcStart); in getInfoFromCompactEncodingSection()
1883 uint32_t funcStartOffset = (uint32_t)(funcStart - sects.dso_base); in getInfoFromCompactEncodingSection()
1938 (uint64_t) pc, encoding, (uint64_t) lsda, (uint64_t) funcStart); in getInfoFromCompactEncodingSection()
[all …]
/openbsd-src/gnu/llvm/libcxxabi/src/
H A Dcxa_personality.cpp644 uintptr_t funcStart = _Unwind_GetRegionStart(context); in scan_eh_tab() local
656 uintptr_t ipOffset = ip - funcStart; in scan_eh_tab()
666 lpStart = (const uint8_t*)funcStart; in scan_eh_tab()
/openbsd-src/gnu/llvm/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp616 uintptr_t funcStart = _Unwind_GetRegionStart(context); in handleLsda() local
617 uintptr_t pcOffset = pc - funcStart; in handleLsda()
738 _Unwind_SetIP(context, funcStart + landingPad); in handleLsda()