HomeSort by: relevance | last modified time | path
    Searched refs:pcEnd (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/lib/libunwind/
libunwind.cxx 365 MyCFIParser::pint_t pcStart, pcEnd;
367 MyCFIParser::findPCRange(sThisAddressSpace, (uintptr_t)fde, pcStart, pcEnd);
368 if (pcEnd == 0)
371 sThisAddressSpace.addFDE(pcStart, pcEnd, (uintptr_t)fde);
379 MyCFIParser::pint_t pcStart, pcEnd;
381 MyCFIParser::findPCRange(sThisAddressSpace, (uintptr_t)fde, pcStart, pcEnd);
382 if (pcEnd == 0)
385 sThisAddressSpace.removeFDE(pcStart, pcEnd, (uintptr_t)fde);
UnwindCursor.hpp 117 if (pc < fdeInfo.pcStart || pc > fdeInfo.pcEnd) {
130 fInfo.end_ip = fdeInfo.pcEnd;
AddressSpace.hpp 56 pint_t &pcEnd);
285 bool addFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) {
291 n->last_pc = pcEnd;
304 bool removeFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) {
312 assert(n->last_pc == pcEnd);
DwarfParser.hpp 55 pint_t pcEnd;
112 pint_t &pcEnd) {
114 pcEnd = 0;
136 pcEnd = pcStart + addressSpace.getEncodedP(
193 fdeInfo->pcEnd = pcStart + pcRange;

Completed in 13 milliseconds