1 //===-- UnwindAssemblyInstEmulation.cpp --------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "UnwindAssemblyInstEmulation.h" 11 12 #include "lldb/Core/Address.h" 13 #include "lldb/Core/ArchSpec.h" 14 #include "lldb/Core/DataBufferHeap.h" 15 #include "lldb/Core/DataExtractor.h" 16 #include "lldb/Core/Disassembler.h" 17 #include "lldb/Core/Error.h" 18 #include "lldb/Core/Log.h" 19 #include "lldb/Core/PluginManager.h" 20 #include "lldb/Core/StreamString.h" 21 #include "lldb/Target/ExecutionContext.h" 22 #include "lldb/Target/Process.h" 23 #include "lldb/Target/Thread.h" 24 #include "lldb/Target/Target.h" 25 26 using namespace lldb; 27 using namespace lldb_private; 28 29 30 31 //----------------------------------------------------------------------------------------------- 32 // UnwindAssemblyInstEmulation method definitions 33 //----------------------------------------------------------------------------------------------- 34 35 bool 36 UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly (AddressRange& range, 37 Thread& thread, 38 UnwindPlan& unwind_plan) 39 { 40 if (range.GetByteSize() > 0 && 41 range.GetBaseAddress().IsValid() && 42 m_inst_emulator_ap.get()) 43 { 44 45 // The the instruction emulation subclass setup the unwind plan for the 46 // first instruction. 47 m_inst_emulator_ap->CreateFunctionEntryUnwind (unwind_plan); 48 49 // CreateFunctionEntryUnwind should have created the first row. If it 50 // doesn't, then we are done. 51 if (unwind_plan.GetRowCount() == 0) 52 return false; 53 54 ExecutionContext exe_ctx; 55 thread.CalculateExecutionContext(exe_ctx); 56 DisassemblerSP disasm_sp (Disassembler::DisassembleRange (m_arch, 57 NULL, 58 NULL, 59 exe_ctx, 60 range)); 61 62 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_UNWIND)); 63 64 if (disasm_sp) 65 { 66 67 m_range_ptr = ⦥ 68 m_thread_ptr = &thread; 69 m_unwind_plan_ptr = &unwind_plan; 70 71 const uint32_t addr_byte_size = m_arch.GetAddressByteSize(); 72 const bool show_address = true; 73 const bool show_bytes = true; 74 m_inst_emulator_ap->GetRegisterInfo (unwind_plan.GetRegisterKind(), 75 unwind_plan.GetInitialCFARegister(), 76 m_cfa_reg_info); 77 78 m_fp_is_cfa = false; 79 m_register_values.clear(); 80 m_pushed_regs.clear(); 81 82 // Initialize the CFA with a known value. In the 32 bit case 83 // it will be 0x80000000, and in the 64 bit case 0x8000000000000000. 84 // We use the address byte size to be safe for any future addresss sizes 85 m_initial_sp = (1ull << ((addr_byte_size * 8) - 1)); 86 RegisterValue cfa_reg_value; 87 cfa_reg_value.SetUInt (m_initial_sp, m_cfa_reg_info.byte_size); 88 SetRegisterValue (m_cfa_reg_info, cfa_reg_value); 89 90 const InstructionList &inst_list = disasm_sp->GetInstructionList (); 91 const size_t num_instructions = inst_list.GetSize(); 92 93 if (num_instructions > 0) 94 { 95 Instruction *inst = inst_list.GetInstructionAtIndex (0).get(); 96 const addr_t base_addr = inst->GetAddress().GetFileAddress(); 97 98 // Make a copy of the current instruction Row and save it in m_curr_row 99 // so we can add updates as we process the instructions. 100 UnwindPlan::RowSP last_row = unwind_plan.GetLastRow(); 101 UnwindPlan::Row *newrow = new UnwindPlan::Row; 102 if (last_row.get()) 103 *newrow = *last_row.get(); 104 m_curr_row.reset(newrow); 105 106 // Once we've seen the initial prologue instructions complete, save a 107 // copy of the CFI at that point into prologue_completed_row for possible 108 // use later. 109 int instructions_since_last_prologue_insn = 0; // # of insns since last CFI was update 110 111 bool reinstate_prologue_next_instruction = false; // Next iteration, re-install the prologue row of CFI 112 113 bool last_instruction_restored_return_addr_reg = false; // re-install the prologue row of CFI if the next instruction is a branch immediate 114 115 bool return_address_register_has_been_saved = false; // if we've seen the ra register get saved yet 116 117 UnwindPlan::RowSP prologue_completed_row; // copy of prologue row of CFI 118 119 // cache the pc register number (in whatever register numbering this UnwindPlan uses) for 120 // quick reference during instruction parsing. 121 uint32_t pc_reg_num = LLDB_INVALID_REGNUM; 122 RegisterInfo pc_reg_info; 123 if (m_inst_emulator_ap->GetRegisterInfo (eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, pc_reg_info)) 124 pc_reg_num = pc_reg_info.kinds[unwind_plan.GetRegisterKind()]; 125 else 126 pc_reg_num = LLDB_INVALID_REGNUM; 127 128 // cache the return address register number (in whatever register numbering this UnwindPlan uses) for 129 // quick reference during instruction parsing. 130 uint32_t ra_reg_num = LLDB_INVALID_REGNUM; 131 RegisterInfo ra_reg_info; 132 if (m_inst_emulator_ap->GetRegisterInfo (eRegisterKindGeneric, LLDB_REGNUM_GENERIC_RA, ra_reg_info)) 133 ra_reg_num = ra_reg_info.kinds[unwind_plan.GetRegisterKind()]; 134 else 135 ra_reg_num = LLDB_INVALID_REGNUM; 136 137 for (size_t idx=0; idx<num_instructions; ++idx) 138 { 139 m_curr_row_modified = false; 140 m_curr_insn_restored_a_register = false; 141 inst = inst_list.GetInstructionAtIndex (idx).get(); 142 if (inst) 143 { 144 if (log && log->GetVerbose ()) 145 { 146 StreamString strm; 147 inst->Dump(&strm, inst_list.GetMaxOpcocdeByteSize (), show_address, show_bytes, NULL); 148 log->PutCString (strm.GetData()); 149 } 150 151 m_inst_emulator_ap->SetInstruction (inst->GetOpcode(), 152 inst->GetAddress(), 153 exe_ctx.GetTargetPtr()); 154 155 m_inst_emulator_ap->EvaluateInstruction (eEmulateInstructionOptionIgnoreConditions); 156 157 // Were there any changes to the CFI while evaluating this instruction? 158 if (m_curr_row_modified) 159 { 160 reinstate_prologue_next_instruction = false; 161 m_curr_row->SetOffset (inst->GetAddress().GetFileAddress() + inst->GetOpcode().GetByteSize() - base_addr); 162 // Append the new row 163 unwind_plan.AppendRow (m_curr_row); 164 165 // Allocate a new Row for m_curr_row, copy the current state into it 166 UnwindPlan::Row *newrow = new UnwindPlan::Row; 167 *newrow = *m_curr_row.get(); 168 m_curr_row.reset(newrow); 169 170 // If m_curr_insn_restored_a_register == true, we're looking at an epilogue instruction. 171 // Set instructions_since_last_prologue_insn to a very high number so we don't append 172 // any of these epilogue instructions to our prologue_complete row. 173 if (m_curr_insn_restored_a_register == false && instructions_since_last_prologue_insn < 8) 174 instructions_since_last_prologue_insn = 0; 175 else 176 instructions_since_last_prologue_insn = 99; 177 178 UnwindPlan::Row::RegisterLocation pc_regloc; 179 UnwindPlan::Row::RegisterLocation ra_regloc; 180 181 // While parsing the instructions of this function, if we've ever 182 // seen the return address register (aka lr on arm) in a non-IsSame() state, 183 // it has been saved on the stack. If it's evern back to IsSame(), we've 184 // executed an epilogue. 185 if (ra_reg_num != LLDB_INVALID_REGNUM 186 && m_curr_row->GetRegisterInfo (ra_reg_num, ra_regloc) 187 && !ra_regloc.IsSame()) 188 { 189 return_address_register_has_been_saved = true; 190 } 191 192 // If the caller's pc is "same", we've just executed an epilogue and we return to the caller 193 // after this instruction completes executing. 194 // If there are any instructions past this, there must have been flow control over this 195 // epilogue so we'll reinstate the original prologue setup instructions. 196 if (prologue_completed_row.get() 197 && pc_reg_num != LLDB_INVALID_REGNUM 198 && m_curr_row->GetRegisterInfo (pc_reg_num, pc_regloc) 199 && pc_regloc.IsSame()) 200 { 201 if (log && log->GetVerbose()) 202 log->Printf("UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly -- pc is <same>, restore prologue instructions."); 203 reinstate_prologue_next_instruction = true; 204 } 205 else if (prologue_completed_row.get() 206 && return_address_register_has_been_saved 207 && ra_reg_num != LLDB_INVALID_REGNUM 208 && m_curr_row->GetRegisterInfo (ra_reg_num, ra_regloc) 209 && ra_regloc.IsSame()) 210 { 211 if (log && log->GetVerbose()) 212 log->Printf("UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly -- lr is <same>, restore prologue instruction if the next instruction is a branch immediate."); 213 last_instruction_restored_return_addr_reg = true; 214 } 215 } 216 else 217 { 218 // If the previous instruction was a return-to-caller (epilogue), and we're still executing 219 // instructions in this function, there must be a code path that jumps over that epilogue. 220 // Also detect the case where we epilogue & branch imm to another function (tail-call opt) 221 // instead of a normal pop lr-into-pc exit. 222 // Reinstate the frame setup from the prologue. 223 if (reinstate_prologue_next_instruction 224 || (m_curr_insn_is_branch_immediate && last_instruction_restored_return_addr_reg)) 225 { 226 if (log && log->GetVerbose()) 227 log->Printf("UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly -- Reinstating prologue instruction set"); 228 UnwindPlan::Row *newrow = new UnwindPlan::Row; 229 *newrow = *prologue_completed_row.get(); 230 m_curr_row.reset(newrow); 231 m_curr_row->SetOffset (inst->GetAddress().GetFileAddress() + inst->GetOpcode().GetByteSize() - base_addr); 232 unwind_plan.AppendRow(m_curr_row); 233 234 newrow = new UnwindPlan::Row; 235 *newrow = *m_curr_row.get(); 236 m_curr_row.reset(newrow); 237 238 reinstate_prologue_next_instruction = false; 239 last_instruction_restored_return_addr_reg = false; 240 m_curr_insn_is_branch_immediate = false; 241 } 242 243 // clear both of these if either one wasn't set 244 if (last_instruction_restored_return_addr_reg) 245 { 246 last_instruction_restored_return_addr_reg = false; 247 } 248 if (m_curr_insn_is_branch_immediate) 249 { 250 m_curr_insn_is_branch_immediate = false; 251 } 252 253 // Stop updating the prologue instructions if we've seen 8 non-prologue instructions 254 // in a row. 255 if (instructions_since_last_prologue_insn++ < 8) 256 { 257 UnwindPlan::Row *newrow = new UnwindPlan::Row; 258 *newrow = *m_curr_row.get(); 259 prologue_completed_row.reset(newrow); 260 if (log && log->GetVerbose()) 261 log->Printf("UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly -- saving a copy of the current row as the prologue row."); 262 } 263 } 264 } 265 } 266 } 267 } 268 269 if (log && log->GetVerbose ()) 270 { 271 StreamString strm; 272 lldb::addr_t base_addr = range.GetBaseAddress().GetLoadAddress(thread.CalculateTarget().get()); 273 strm.Printf ("Resulting unwind rows for [0x%" PRIx64 " - 0x%" PRIx64 "):", base_addr, base_addr + range.GetByteSize()); 274 unwind_plan.Dump(strm, &thread, base_addr); 275 log->PutCString (strm.GetData()); 276 } 277 return unwind_plan.GetRowCount() > 0; 278 } 279 return false; 280 } 281 282 bool 283 UnwindAssemblyInstEmulation::GetFastUnwindPlan (AddressRange& func, 284 Thread& thread, 285 UnwindPlan &unwind_plan) 286 { 287 return false; 288 } 289 290 bool 291 UnwindAssemblyInstEmulation::FirstNonPrologueInsn (AddressRange& func, 292 const ExecutionContext &exe_ctx, 293 Address& first_non_prologue_insn) 294 { 295 return false; 296 } 297 298 UnwindAssembly * 299 UnwindAssemblyInstEmulation::CreateInstance (const ArchSpec &arch) 300 { 301 std::auto_ptr<EmulateInstruction> inst_emulator_ap (EmulateInstruction::FindPlugin (arch, eInstructionTypePrologueEpilogue, NULL)); 302 // Make sure that all prologue instructions are handled 303 if (inst_emulator_ap.get()) 304 return new UnwindAssemblyInstEmulation (arch, inst_emulator_ap.release()); 305 return NULL; 306 } 307 308 309 //------------------------------------------------------------------ 310 // PluginInterface protocol in UnwindAssemblyParser_x86 311 //------------------------------------------------------------------ 312 313 const char * 314 UnwindAssemblyInstEmulation::GetPluginName() 315 { 316 return "UnwindAssemblyInstEmulation"; 317 } 318 319 const char * 320 UnwindAssemblyInstEmulation::GetShortPluginName() 321 { 322 return "unwindassembly.inst-emulation"; 323 } 324 325 326 uint32_t 327 UnwindAssemblyInstEmulation::GetPluginVersion() 328 { 329 return 1; 330 } 331 332 void 333 UnwindAssemblyInstEmulation::Initialize() 334 { 335 PluginManager::RegisterPlugin (GetPluginNameStatic(), 336 GetPluginDescriptionStatic(), 337 CreateInstance); 338 } 339 340 void 341 UnwindAssemblyInstEmulation::Terminate() 342 { 343 PluginManager::UnregisterPlugin (CreateInstance); 344 } 345 346 347 const char * 348 UnwindAssemblyInstEmulation::GetPluginNameStatic() 349 { 350 return "UnwindAssemblyInstEmulation"; 351 } 352 353 const char * 354 UnwindAssemblyInstEmulation::GetPluginDescriptionStatic() 355 { 356 return "Instruction emulation based unwind information."; 357 } 358 359 360 uint64_t 361 UnwindAssemblyInstEmulation::MakeRegisterKindValuePair (const RegisterInfo ®_info) 362 { 363 uint32_t reg_kind, reg_num; 364 if (EmulateInstruction::GetBestRegisterKindAndNumber (®_info, reg_kind, reg_num)) 365 return (uint64_t)reg_kind << 24 | reg_num; 366 return 0ull; 367 } 368 369 void 370 UnwindAssemblyInstEmulation::SetRegisterValue (const RegisterInfo ®_info, const RegisterValue ®_value) 371 { 372 m_register_values[MakeRegisterKindValuePair (reg_info)] = reg_value; 373 } 374 375 bool 376 UnwindAssemblyInstEmulation::GetRegisterValue (const RegisterInfo ®_info, RegisterValue ®_value) 377 { 378 const uint64_t reg_id = MakeRegisterKindValuePair (reg_info); 379 RegisterValueMap::const_iterator pos = m_register_values.find(reg_id); 380 if (pos != m_register_values.end()) 381 { 382 reg_value = pos->second; 383 return true; // We had a real value that comes from an opcode that wrote 384 // to it... 385 } 386 // We are making up a value that is recognizable... 387 reg_value.SetUInt(reg_id, reg_info.byte_size); 388 return false; 389 } 390 391 392 size_t 393 UnwindAssemblyInstEmulation::ReadMemory (EmulateInstruction *instruction, 394 void *baton, 395 const EmulateInstruction::Context &context, 396 lldb::addr_t addr, 397 void *dst, 398 size_t dst_len) 399 { 400 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_UNWIND)); 401 402 if (log && log->GetVerbose ()) 403 { 404 StreamString strm; 405 strm.Printf ("UnwindAssemblyInstEmulation::ReadMemory (addr = 0x%16.16" PRIx64 ", dst = %p, dst_len = %" PRIu64 ", context = ", 406 addr, 407 dst, 408 (uint64_t)dst_len); 409 context.Dump(strm, instruction); 410 log->PutCString (strm.GetData ()); 411 } 412 memset (dst, 0, dst_len); 413 return dst_len; 414 } 415 416 size_t 417 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, 418 void *baton, 419 const EmulateInstruction::Context &context, 420 lldb::addr_t addr, 421 const void *dst, 422 size_t dst_len) 423 { 424 if (baton && dst && dst_len) 425 return ((UnwindAssemblyInstEmulation *)baton)->WriteMemory (instruction, context, addr, dst, dst_len); 426 return 0; 427 } 428 429 size_t 430 UnwindAssemblyInstEmulation::WriteMemory (EmulateInstruction *instruction, 431 const EmulateInstruction::Context &context, 432 lldb::addr_t addr, 433 const void *dst, 434 size_t dst_len) 435 { 436 DataExtractor data (dst, 437 dst_len, 438 instruction->GetArchitecture ().GetByteOrder(), 439 instruction->GetArchitecture ().GetAddressByteSize()); 440 441 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_UNWIND)); 442 443 if (log && log->GetVerbose ()) 444 { 445 StreamString strm; 446 447 strm.PutCString ("UnwindAssemblyInstEmulation::WriteMemory ("); 448 data.Dump(&strm, 0, eFormatBytes, 1, dst_len, UINT32_MAX, addr, 0, 0); 449 strm.PutCString (", context = "); 450 context.Dump(strm, instruction); 451 log->PutCString (strm.GetData()); 452 } 453 454 const bool can_replace = true; 455 const bool cant_replace = false; 456 457 switch (context.type) 458 { 459 default: 460 case EmulateInstruction::eContextInvalid: 461 case EmulateInstruction::eContextReadOpcode: 462 case EmulateInstruction::eContextImmediate: 463 case EmulateInstruction::eContextAdjustBaseRegister: 464 case EmulateInstruction::eContextRegisterPlusOffset: 465 case EmulateInstruction::eContextAdjustPC: 466 case EmulateInstruction::eContextRegisterStore: 467 case EmulateInstruction::eContextRegisterLoad: 468 case EmulateInstruction::eContextRelativeBranchImmediate: 469 case EmulateInstruction::eContextAbsoluteBranchRegister: 470 case EmulateInstruction::eContextSupervisorCall: 471 case EmulateInstruction::eContextTableBranchReadMemory: 472 case EmulateInstruction::eContextWriteRegisterRandomBits: 473 case EmulateInstruction::eContextWriteMemoryRandomBits: 474 case EmulateInstruction::eContextArithmetic: 475 case EmulateInstruction::eContextAdvancePC: 476 case EmulateInstruction::eContextReturnFromException: 477 case EmulateInstruction::eContextPopRegisterOffStack: 478 case EmulateInstruction::eContextAdjustStackPointer: 479 break; 480 481 case EmulateInstruction::eContextPushRegisterOnStack: 482 { 483 uint32_t reg_num = LLDB_INVALID_REGNUM; 484 bool is_return_address_reg = false; 485 const uint32_t unwind_reg_kind = m_unwind_plan_ptr->GetRegisterKind(); 486 if (context.info_type == EmulateInstruction::eInfoTypeRegisterToRegisterPlusOffset) 487 { 488 reg_num = context.info.RegisterToRegisterPlusOffset.data_reg.kinds[unwind_reg_kind]; 489 if (context.info.RegisterToRegisterPlusOffset.data_reg.kinds[eRegisterKindGeneric] == LLDB_REGNUM_GENERIC_RA) 490 is_return_address_reg = true; 491 } 492 else 493 { 494 assert (!"unhandled case, add code to handle this!"); 495 } 496 497 if (reg_num != LLDB_INVALID_REGNUM) 498 { 499 if (m_pushed_regs.find (reg_num) == m_pushed_regs.end()) 500 { 501 m_pushed_regs[reg_num] = addr; 502 const int32_t offset = addr - m_initial_sp; 503 m_curr_row->SetRegisterLocationToAtCFAPlusOffset (reg_num, offset, cant_replace); 504 m_curr_row_modified = true; 505 if (is_return_address_reg) 506 { 507 // This push was pushing the return address register, 508 // so this is also how we will unwind the PC... 509 RegisterInfo pc_reg_info; 510 if (instruction->GetRegisterInfo (eRegisterKindGeneric, LLDB_REGNUM_GENERIC_PC, pc_reg_info)) 511 { 512 uint32_t pc_reg_num = pc_reg_info.kinds[unwind_reg_kind]; 513 if (pc_reg_num != LLDB_INVALID_REGNUM) 514 { 515 m_curr_row->SetRegisterLocationToAtCFAPlusOffset (pc_reg_num, offset, can_replace); 516 m_curr_row_modified = true; 517 } 518 } 519 } 520 } 521 } 522 } 523 break; 524 525 } 526 527 return dst_len; 528 } 529 530 bool 531 UnwindAssemblyInstEmulation::ReadRegister (EmulateInstruction *instruction, 532 void *baton, 533 const RegisterInfo *reg_info, 534 RegisterValue ®_value) 535 { 536 537 if (baton && reg_info) 538 return ((UnwindAssemblyInstEmulation *)baton)->ReadRegister (instruction, reg_info, reg_value); 539 return false; 540 } 541 bool 542 UnwindAssemblyInstEmulation::ReadRegister (EmulateInstruction *instruction, 543 const RegisterInfo *reg_info, 544 RegisterValue ®_value) 545 { 546 bool synthetic = GetRegisterValue (*reg_info, reg_value); 547 548 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_UNWIND)); 549 550 if (log && log->GetVerbose ()) 551 { 552 553 StreamString strm; 554 strm.Printf ("UnwindAssemblyInstEmulation::ReadRegister (name = \"%s\") => synthetic_value = %i, value = ", reg_info->name, synthetic); 555 reg_value.Dump(&strm, reg_info, false, false, eFormatDefault); 556 log->PutCString(strm.GetData()); 557 } 558 return true; 559 } 560 561 bool 562 UnwindAssemblyInstEmulation::WriteRegister (EmulateInstruction *instruction, 563 void *baton, 564 const EmulateInstruction::Context &context, 565 const RegisterInfo *reg_info, 566 const RegisterValue ®_value) 567 { 568 if (baton && reg_info) 569 return ((UnwindAssemblyInstEmulation *)baton)->WriteRegister (instruction, context, reg_info, reg_value); 570 return false; 571 } 572 bool 573 UnwindAssemblyInstEmulation::WriteRegister (EmulateInstruction *instruction, 574 const EmulateInstruction::Context &context, 575 const RegisterInfo *reg_info, 576 const RegisterValue ®_value) 577 { 578 LogSP log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_UNWIND)); 579 580 if (log && log->GetVerbose ()) 581 { 582 583 StreamString strm; 584 strm.Printf ("UnwindAssemblyInstEmulation::WriteRegister (name = \"%s\", value = ", reg_info->name); 585 reg_value.Dump(&strm, reg_info, false, false, eFormatDefault); 586 strm.PutCString (", context = "); 587 context.Dump(strm, instruction); 588 log->PutCString(strm.GetData()); 589 } 590 591 const bool must_replace = true; 592 SetRegisterValue (*reg_info, reg_value); 593 594 switch (context.type) 595 { 596 case EmulateInstruction::eContextInvalid: 597 case EmulateInstruction::eContextReadOpcode: 598 case EmulateInstruction::eContextImmediate: 599 case EmulateInstruction::eContextAdjustBaseRegister: 600 case EmulateInstruction::eContextRegisterPlusOffset: 601 case EmulateInstruction::eContextAdjustPC: 602 case EmulateInstruction::eContextRegisterStore: 603 case EmulateInstruction::eContextRegisterLoad: 604 case EmulateInstruction::eContextAbsoluteBranchRegister: 605 case EmulateInstruction::eContextSupervisorCall: 606 case EmulateInstruction::eContextTableBranchReadMemory: 607 case EmulateInstruction::eContextWriteRegisterRandomBits: 608 case EmulateInstruction::eContextWriteMemoryRandomBits: 609 case EmulateInstruction::eContextArithmetic: 610 case EmulateInstruction::eContextAdvancePC: 611 case EmulateInstruction::eContextReturnFromException: 612 case EmulateInstruction::eContextPushRegisterOnStack: 613 // { 614 // const uint32_t reg_num = reg_info->kinds[m_unwind_plan_ptr->GetRegisterKind()]; 615 // if (reg_num != LLDB_INVALID_REGNUM) 616 // { 617 // const bool can_replace_only_if_unspecified = true; 618 // 619 // m_curr_row.SetRegisterLocationToUndefined (reg_num, 620 // can_replace_only_if_unspecified, 621 // can_replace_only_if_unspecified); 622 // m_curr_row_modified = true; 623 // } 624 // } 625 break; 626 627 case EmulateInstruction::eContextRelativeBranchImmediate: 628 { 629 630 { 631 m_curr_insn_is_branch_immediate = true; 632 } 633 } 634 break; 635 636 case EmulateInstruction::eContextPopRegisterOffStack: 637 { 638 const uint32_t reg_num = reg_info->kinds[m_unwind_plan_ptr->GetRegisterKind()]; 639 if (reg_num != LLDB_INVALID_REGNUM) 640 { 641 m_curr_row->SetRegisterLocationToSame (reg_num, must_replace); 642 m_curr_row_modified = true; 643 m_curr_insn_restored_a_register = true; 644 } 645 } 646 break; 647 648 case EmulateInstruction::eContextSetFramePointer: 649 if (!m_fp_is_cfa) 650 { 651 m_fp_is_cfa = true; 652 m_cfa_reg_info = *reg_info; 653 const uint32_t cfa_reg_num = reg_info->kinds[m_unwind_plan_ptr->GetRegisterKind()]; 654 assert (cfa_reg_num != LLDB_INVALID_REGNUM); 655 m_curr_row->SetCFARegister(cfa_reg_num); 656 m_curr_row->SetCFAOffset(m_initial_sp - reg_value.GetAsUInt64()); 657 m_curr_row_modified = true; 658 } 659 break; 660 661 case EmulateInstruction::eContextAdjustStackPointer: 662 // If we have created a frame using the frame pointer, don't follow 663 // subsequent adjustments to the stack pointer. 664 if (!m_fp_is_cfa) 665 { 666 m_curr_row->SetCFAOffset (m_initial_sp - reg_value.GetAsUInt64()); 667 m_curr_row_modified = true; 668 } 669 break; 670 } 671 return true; 672 } 673 674 675