HomeSort by: relevance | last modified time | path
    Searched refs:pcStart (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);
371 sThisAddressSpace.addFDE(pcStart, pcEnd, (uintptr_t)fde);
379 MyCFIParser::pint_t pcStart, pcEnd;
381 MyCFIParser::findPCRange(sThisAddressSpace, (uintptr_t)fde, pcStart, pcEnd);
385 sThisAddressSpace.removeFDE(pcStart, pcEnd, (uintptr_t)fde);
UnwindCursor.hpp 117 if (pc < fdeInfo.pcStart || pc > fdeInfo.pcEnd) {
121 fInfo.start_ip = fdeInfo.pcStart;
DwarfParser.hpp 54 pint_t pcStart;
111 void CFI_Parser<A, R>::findPCRange(A &addressSpace, pint_t fde, pint_t &pcStart,
113 pcStart = 0;
135 pcStart = addressSpace.getEncodedP(p, nextCFI, cieInfo.pointerEncoding, NULL);
136 pcEnd = pcStart + addressSpace.getEncodedP(
166 pint_t pcStart =
192 fdeInfo->pcStart = pcStart;
193 fdeInfo->pcEnd = pcStart + pcRange;
299 upToPC - fdeInfo.pcStart, rememberStack, results
    [all...]
AddressSpace.hpp 55 typedef void (*findPCRange_t)(LocalAddressSpace &, pint_t, pint_t &pcStart,
285 bool addFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) {
290 n->first_pc = pcStart;
304 bool removeFDE(pint_t pcStart, pint_t pcEnd, pint_t fde) {
306 Range *n = static_cast<Range *>(rb_tree_find_node(&segmentTree, &pcStart));
311 assert(n->first_pc == pcStart);

Completed in 195 milliseconds