Lines Matching refs:ehHdrStart
38 static bool decodeEHHdr(A &addressSpace, pint_t ehHdrStart, pint_t ehHdrEnd,
40 static bool findFDE(A &addressSpace, pint_t pc, pint_t ehHdrStart,
47 pint_t ehHdrStart, pint_t ehHdrEnd,
55 bool EHHeaderParser<A>::decodeEHHdr(A &addressSpace, pint_t ehHdrStart, in decodeEHHdr() argument
57 pint_t p = ehHdrStart; in decodeEHHdr()
69 addressSpace.getEncodedP(p, ehHdrEnd, eh_frame_ptr_enc, ehHdrStart); in decodeEHHdr()
73 : addressSpace.getEncodedP(p, ehHdrEnd, fde_count_enc, ehHdrStart); in decodeEHHdr()
81 A &addressSpace, pint_t &tableEntry, pint_t ehHdrStart, pint_t ehHdrEnd, in decodeTableEntry() argument
86 addressSpace.getEncodedP(tableEntry, ehHdrEnd, tableEnc, ehHdrStart); in decodeTableEntry()
88 addressSpace.getEncodedP(tableEntry, ehHdrEnd, tableEnc, ehHdrStart); in decodeTableEntry()
101 bool EHHeaderParser<A>::findFDE(A &addressSpace, pint_t pc, pint_t ehHdrStart, in findFDE() argument
105 pint_t ehHdrEnd = ehHdrStart + sectionLength; in findFDE()
108 if (!EHHeaderParser<A>::decodeEHHdr(addressSpace, ehHdrStart, ehHdrEnd, in findFDE()
122 hdrInfo.table_enc, ehHdrStart); in findFDE()
136 if (decodeTableEntry(addressSpace, tableEntry, ehHdrStart, ehHdrEnd, in findFDE()