Home | History | Annotate | Download | only in builtins

Lines Matching defs:lsda

193     /* There is nothing to do if there is no LSDA for this frame. */
194 const uint8_t* lsda = (uint8_t*)_Unwind_GetLanguageSpecificData(context);
195 if ( lsda == (uint8_t*) 0 )
202 /* Parse LSDA header. */
203 uint8_t lpStartEncoding = *lsda++;
205 readEncodedPointer(&lsda, lpStartEncoding);
207 uint8_t ttypeEncoding = *lsda++;
209 readULEB128(&lsda);
212 uint8_t callSiteEncoding = *lsda++;
213 uint32_t callSiteTableLength = readULEB128(&lsda);
214 const uint8_t* callSiteTableStart = lsda;