Lines Matching defs:pint_t
30 typedef typename A::pint_t pint_t;
34 pint_t cieStart;
35 pint_t cieLength;
36 pint_t cieInstructions;
37 pint_t personality;
51 pint_t fdeStart;
52 pint_t fdeLength;
53 pint_t fdeInstructions;
54 pint_t pcStart;
55 pint_t pcEnd;
56 pint_t lsda;
92 static void findPCRange(A &, pint_t, pint_t &, pint_t &);
94 static bool decodeFDE(A &, pint_t, FDE_Info *, CIE_Info *,
97 pint_t, PrologInfo *, unw_proc_info_t *ctx);
99 static bool parseCIE(A &, pint_t, CIE_Info *);
102 static bool parseInstructions(A &, pint_t, pint_t, const CIE_Info &, pint_t,
111 void CFI_Parser<A, R>::findPCRange(A &addressSpace, pint_t fde, pint_t &pcStart,
112 pint_t &pcEnd) {
115 pint_t p = fde;
128 pint_t nextCFI = p + cfiLength;
129 pint_t cieStart = p - ciePointer;
144 bool CFI_Parser<A, R>::decodeFDE(A &addressSpace, pint_t fdeStart,
147 pint_t p = fdeStart;
160 pint_t nextCFI = p + cfiLength;
161 pint_t cieStart = p - ciePointer;
166 pint_t pcStart =
168 pint_t pcRange = addressSpace.getEncodedP(
175 pint_t endOfAug = p + augLen;
178 pint_t lsdaStart = p;
199 bool CFI_Parser<A, R>::parseCIE(A &addressSpace, pint_t cie,
211 pint_t p = cie;
214 pint_t cieContentEnd = p + cieLength;
233 pint_t strStart = p;
247 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) {
286 pint_t upToPC, PrologInfo *results,
295 (pint_t)(-1), rememberStack, results, ctx))
306 CFI_Parser<A, R>::parseInstructions(A &addressSpace, pint_t instructions,
307 pint_t instructionsEnd,
308 const CIE_Info &cieInfo, pint_t pcoffset,
311 pint_t p = instructions;