Lines Matching defs:unwind_plan

903     UnwindPlan &unwind_plan) {
904 unwind_plan.Clear();
921 unwind_plan.SetPlanValidAddressRange(func_range);
922 unwind_plan.SetRegisterKind(eRegisterKindLLDB);
938 unwind_plan.AppendRow(row);
1302 unwind_plan.AppendRow(row);
1335 unwind_plan.SetSourceName("assembly insn profiling");
1336 unwind_plan.SetSourcedFromCompiler(eLazyBoolNo);
1337 unwind_plan.SetUnwindPlanValidAtAllInstructions(eLazyBoolYes);
1338 unwind_plan.SetUnwindPlanForSignalTrap(eLazyBoolNo);
1345 UnwindPlan &unwind_plan, RegisterContextSP &reg_ctx) {
1353 unwind_plan.GetRegisterKind() != eRegisterKindLLDB)
1356 // Is original unwind_plan valid?
1357 // unwind_plan should have at least one row which is ABI-default (CFA
1359 if (unwind_plan.GetRowCount() < 2)
1362 UnwindPlan::RowSP first_row = unwind_plan.GetRowAtIndex(0);
1366 if (unwind_plan.GetRegisterKind() != eRegisterKindLLDB) {
1368 unwind_plan.GetRegisterKind(),
1375 UnwindPlan::RowSP original_last_row = unwind_plan.GetRowForFunctionOffset(-1);
1407 unwind_plan.AppendRow(new_row);
1416 while (row_id < unwind_plan.GetRowCount() &&
1417 unwind_plan.GetRowAtIndex(row_id)->GetOffset() <= offset) {
1420 UnwindPlan::RowSP original_row = unwind_plan.GetRowAtIndex(row_id - 1);
1434 if (unwind_plan.GetRegisterKind() != eRegisterKindLLDB) {
1436 unwind_plan.GetRegisterKind(),
1450 unwind_plan.InsertRow(new_row);
1462 unwind_plan.InsertRow(new_row);
1476 unwind_plan.InsertRow(new_row);
1486 unwind_plan.InsertRow(new_row);
1496 unwind_plan.InsertRow(new_row);
1506 unwind_plan.InsertRow(new_row);
1518 unwind_plan.InsertRow(new_row);
1527 unwind_plan.InsertRow(new_row);
1538 unwind_plan.InsertRow(new_row);
1561 unwind_plan.InsertRow(new_row);
1576 unwind_plan.SetPlanValidAddressRange(func_range);
1578 std::string unwind_plan_source(unwind_plan.GetSourceName().AsCString());
1580 unwind_plan.SetSourceName(unwind_plan_source.c_str());
1581 unwind_plan.SetSourcedFromCompiler(eLazyBoolNo);
1582 unwind_plan.SetUnwindPlanValidAtAllInstructions(eLazyBoolYes);