Home
last modified time | relevance | path

Searched refs:BeginAddress (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DARMWinEH.h105 const support::ulittle32_t BeginAddress;
109 : BeginAddress(Data[0]), UnwindData(Data[1]) {} in RuntimeFunction()
111 RuntimeFunction(const support::ulittle32_t BeginAddress, in RuntimeFunction() argument
113 : BeginAddress(BeginAddress), UnwindData(UnwindData) {} in RuntimeFunction()
226 const support::ulittle32_t BeginAddress;
230 : BeginAddress(Data[0]), UnwindData(Data[1]) {} in RuntimeFunctionARM64()
232 RuntimeFunctionARM64(const support::ulittle32_t BeginAddress, in RuntimeFunctionARM64() argument
234 : BeginAddress(BeginAddress), UnwindData(UnwindData) {} in RuntimeFunctionARM64()
/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DProfileGenerator.cpp334 uint64_t BeginAddress = UINT64_MAX; in findDisjointRanges() local
341 if (BeginAddress != UINT64_MAX) in findDisjointRanges()
342 DisjointRanges[{BeginAddress, Address - 1}] = Count; in findDisjointRanges()
344 BeginAddress = Address; in findDisjointRanges()
348 assert((BeginAddress != UINT64_MAX) && in findDisjointRanges()
350 DisjointRanges[{BeginAddress, Address}] = Count; in findDisjointRanges()
353 BeginAddress = Address + 1; in findDisjointRanges()
364 BeginAddress = UINT64_MAX; in findDisjointRanges()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1139 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpUnpackedEntry()
1147 if (!RF.BeginAddress && !Function) in dumpUnpackedEntry()
1208 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpPackedEntry()
1307 COFF, Section, Offset, RF.BeginAddress, FunctionAddress, FunctionOffset, in dumpPackedARM64Entry()
/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwind-seh.cpp435 uintptr_t result = (uintptr_t)disp->FunctionEntry->BeginAddress + disp->ImageBase; in _Unwind_GetRegionStart()
H A DUnwindCursor.hpp1969 _info.start_ip = base + unwindEntry->BeginAddress; in getInfoFromSEH()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DCOFF.h726 support::ulittle32_t BeginAddress; member