Home | History | Annotate | Download | only in lib

Lines Matching defs:lsda

199     /* There is nothing to do if there is no LSDA for this frame. */
200 const uint8_t* lsda = _Unwind_GetLanguageSpecificData(context);
201 if ( lsda == (uint8_t*) 0 )
208 /* Parse LSDA header. */
209 uint8_t lpStartEncoding = *lsda++;
211 readEncodedPointer(&lsda, lpStartEncoding);
213 uint8_t ttypeEncoding = *lsda++;
215 readULEB128(&lsda);
218 uint8_t callSiteEncoding = *lsda++;
219 uint32_t callSiteTableLength = readULEB128(&lsda);
220 const uint8_t* callSiteTableStart = lsda;