1 //===-- GDBRemoteRegisterContext.cpp ----------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "GDBRemoteRegisterContext.h" 10 11 #include "lldb/Target/ExecutionContext.h" 12 #include "lldb/Target/Target.h" 13 #include "lldb/Utility/DataBufferHeap.h" 14 #include "lldb/Utility/DataExtractor.h" 15 #include "lldb/Utility/RegisterValue.h" 16 #include "lldb/Utility/Scalar.h" 17 #include "lldb/Utility/StreamString.h" 18 #include "ProcessGDBRemote.h" 19 #include "ProcessGDBRemoteLog.h" 20 #include "ThreadGDBRemote.h" 21 #include "Utility/ARM_DWARF_Registers.h" 22 #include "Utility/ARM_ehframe_Registers.h" 23 #include "lldb/Utility/StringExtractorGDBRemote.h" 24 25 #include <memory> 26 27 using namespace lldb; 28 using namespace lldb_private; 29 using namespace lldb_private::process_gdb_remote; 30 31 //---------------------------------------------------------------------- 32 // GDBRemoteRegisterContext constructor 33 //---------------------------------------------------------------------- 34 GDBRemoteRegisterContext::GDBRemoteRegisterContext( 35 ThreadGDBRemote &thread, uint32_t concrete_frame_idx, 36 GDBRemoteDynamicRegisterInfo ®_info, bool read_all_at_once) 37 : RegisterContext(thread, concrete_frame_idx), m_reg_info(reg_info), 38 m_reg_valid(), m_reg_data(), m_read_all_at_once(read_all_at_once) { 39 // Resize our vector of bools to contain one bool for every register. We will 40 // use these boolean values to know when a register value is valid in 41 // m_reg_data. 42 m_reg_valid.resize(reg_info.GetNumRegisters()); 43 44 // Make a heap based buffer that is big enough to store all registers 45 DataBufferSP reg_data_sp( 46 new DataBufferHeap(reg_info.GetRegisterDataByteSize(), 0)); 47 m_reg_data.SetData(reg_data_sp); 48 m_reg_data.SetByteOrder(thread.GetProcess()->GetByteOrder()); 49 } 50 51 //---------------------------------------------------------------------- 52 // Destructor 53 //---------------------------------------------------------------------- 54 GDBRemoteRegisterContext::~GDBRemoteRegisterContext() {} 55 56 void GDBRemoteRegisterContext::InvalidateAllRegisters() { 57 SetAllRegisterValid(false); 58 } 59 60 void GDBRemoteRegisterContext::SetAllRegisterValid(bool b) { 61 std::vector<bool>::iterator pos, end = m_reg_valid.end(); 62 for (pos = m_reg_valid.begin(); pos != end; ++pos) 63 *pos = b; 64 } 65 66 size_t GDBRemoteRegisterContext::GetRegisterCount() { 67 return m_reg_info.GetNumRegisters(); 68 } 69 70 const RegisterInfo * 71 GDBRemoteRegisterContext::GetRegisterInfoAtIndex(size_t reg) { 72 RegisterInfo *reg_info = m_reg_info.GetRegisterInfoAtIndex(reg); 73 74 if (reg_info && reg_info->dynamic_size_dwarf_expr_bytes) { 75 const ArchSpec &arch = m_thread.GetProcess()->GetTarget().GetArchitecture(); 76 uint8_t reg_size = UpdateDynamicRegisterSize(arch, reg_info); 77 reg_info->byte_size = reg_size; 78 } 79 return reg_info; 80 } 81 82 size_t GDBRemoteRegisterContext::GetRegisterSetCount() { 83 return m_reg_info.GetNumRegisterSets(); 84 } 85 86 const RegisterSet *GDBRemoteRegisterContext::GetRegisterSet(size_t reg_set) { 87 return m_reg_info.GetRegisterSet(reg_set); 88 } 89 90 bool GDBRemoteRegisterContext::ReadRegister(const RegisterInfo *reg_info, 91 RegisterValue &value) { 92 // Read the register 93 if (ReadRegisterBytes(reg_info, m_reg_data)) { 94 const bool partial_data_ok = false; 95 Status error(value.SetValueFromData( 96 reg_info, m_reg_data, reg_info->byte_offset, partial_data_ok)); 97 return error.Success(); 98 } 99 return false; 100 } 101 102 bool GDBRemoteRegisterContext::PrivateSetRegisterValue( 103 uint32_t reg, llvm::ArrayRef<uint8_t> data) { 104 const RegisterInfo *reg_info = GetRegisterInfoAtIndex(reg); 105 if (reg_info == NULL) 106 return false; 107 108 // Invalidate if needed 109 InvalidateIfNeeded(false); 110 111 const size_t reg_byte_size = reg_info->byte_size; 112 memcpy(const_cast<uint8_t *>( 113 m_reg_data.PeekData(reg_info->byte_offset, reg_byte_size)), 114 data.data(), std::min(data.size(), reg_byte_size)); 115 bool success = data.size() >= reg_byte_size; 116 if (success) { 117 SetRegisterIsValid(reg, true); 118 } else if (data.size() > 0) { 119 // Only set register is valid to false if we copied some bytes, else leave 120 // it as it was. 121 SetRegisterIsValid(reg, false); 122 } 123 return success; 124 } 125 126 bool GDBRemoteRegisterContext::PrivateSetRegisterValue(uint32_t reg, 127 uint64_t new_reg_val) { 128 const RegisterInfo *reg_info = GetRegisterInfoAtIndex(reg); 129 if (reg_info == NULL) 130 return false; 131 132 // Early in process startup, we can get a thread that has an invalid byte 133 // order because the process hasn't been completely set up yet (see the ctor 134 // where the byte order is setfrom the process). If that's the case, we 135 // can't set the value here. 136 if (m_reg_data.GetByteOrder() == eByteOrderInvalid) { 137 return false; 138 } 139 140 // Invalidate if needed 141 InvalidateIfNeeded(false); 142 143 DataBufferSP buffer_sp(new DataBufferHeap(&new_reg_val, sizeof(new_reg_val))); 144 DataExtractor data(buffer_sp, endian::InlHostByteOrder(), sizeof(void *)); 145 146 // If our register context and our register info disagree, which should never 147 // happen, don't overwrite past the end of the buffer. 148 if (m_reg_data.GetByteSize() < reg_info->byte_offset + reg_info->byte_size) 149 return false; 150 151 // Grab a pointer to where we are going to put this register 152 uint8_t *dst = const_cast<uint8_t *>( 153 m_reg_data.PeekData(reg_info->byte_offset, reg_info->byte_size)); 154 155 if (dst == NULL) 156 return false; 157 158 if (data.CopyByteOrderedData(0, // src offset 159 reg_info->byte_size, // src length 160 dst, // dst 161 reg_info->byte_size, // dst length 162 m_reg_data.GetByteOrder())) // dst byte order 163 { 164 SetRegisterIsValid(reg, true); 165 return true; 166 } 167 return false; 168 } 169 170 // Helper function for GDBRemoteRegisterContext::ReadRegisterBytes(). 171 bool GDBRemoteRegisterContext::GetPrimordialRegister( 172 const RegisterInfo *reg_info, GDBRemoteCommunicationClient &gdb_comm) { 173 const uint32_t lldb_reg = reg_info->kinds[eRegisterKindLLDB]; 174 const uint32_t remote_reg = reg_info->kinds[eRegisterKindProcessPlugin]; 175 176 if (DataBufferSP buffer_sp = 177 gdb_comm.ReadRegister(m_thread.GetProtocolID(), remote_reg)) 178 return PrivateSetRegisterValue( 179 lldb_reg, llvm::ArrayRef<uint8_t>(buffer_sp->GetBytes(), 180 buffer_sp->GetByteSize())); 181 return false; 182 } 183 184 bool GDBRemoteRegisterContext::ReadRegisterBytes(const RegisterInfo *reg_info, 185 DataExtractor &data) { 186 ExecutionContext exe_ctx(CalculateThread()); 187 188 Process *process = exe_ctx.GetProcessPtr(); 189 Thread *thread = exe_ctx.GetThreadPtr(); 190 if (process == NULL || thread == NULL) 191 return false; 192 193 GDBRemoteCommunicationClient &gdb_comm( 194 ((ProcessGDBRemote *)process)->GetGDBRemote()); 195 196 InvalidateIfNeeded(false); 197 198 const uint32_t reg = reg_info->kinds[eRegisterKindLLDB]; 199 200 if (!GetRegisterIsValid(reg)) { 201 if (m_read_all_at_once) { 202 if (DataBufferSP buffer_sp = 203 gdb_comm.ReadAllRegisters(m_thread.GetProtocolID())) { 204 memcpy(const_cast<uint8_t *>(m_reg_data.GetDataStart()), 205 buffer_sp->GetBytes(), 206 std::min(buffer_sp->GetByteSize(), m_reg_data.GetByteSize())); 207 if (buffer_sp->GetByteSize() >= m_reg_data.GetByteSize()) { 208 SetAllRegisterValid(true); 209 return true; 210 } else { 211 Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD | 212 GDBR_LOG_PACKETS)); 213 if (log) 214 log->Printf ("error: GDBRemoteRegisterContext::ReadRegisterBytes tried to read the " 215 "entire register context at once, expected at least %" PRId64 " bytes " 216 "but only got %" PRId64 " bytes.", m_reg_data.GetByteSize(), 217 buffer_sp->GetByteSize()); 218 } 219 } 220 return false; 221 } 222 if (reg_info->value_regs) { 223 // Process this composite register request by delegating to the 224 // constituent primordial registers. 225 226 // Index of the primordial register. 227 bool success = true; 228 for (uint32_t idx = 0; success; ++idx) { 229 const uint32_t prim_reg = reg_info->value_regs[idx]; 230 if (prim_reg == LLDB_INVALID_REGNUM) 231 break; 232 // We have a valid primordial register as our constituent. Grab the 233 // corresponding register info. 234 const RegisterInfo *prim_reg_info = GetRegisterInfoAtIndex(prim_reg); 235 if (prim_reg_info == NULL) 236 success = false; 237 else { 238 // Read the containing register if it hasn't already been read 239 if (!GetRegisterIsValid(prim_reg)) 240 success = GetPrimordialRegister(prim_reg_info, gdb_comm); 241 } 242 } 243 244 if (success) { 245 // If we reach this point, all primordial register requests have 246 // succeeded. Validate this composite register. 247 SetRegisterIsValid(reg_info, true); 248 } 249 } else { 250 // Get each register individually 251 GetPrimordialRegister(reg_info, gdb_comm); 252 } 253 254 // Make sure we got a valid register value after reading it 255 if (!GetRegisterIsValid(reg)) 256 return false; 257 } 258 259 if (&data != &m_reg_data) { 260 #if defined(LLDB_CONFIGURATION_DEBUG) 261 assert(m_reg_data.GetByteSize() >= 262 reg_info->byte_offset + reg_info->byte_size); 263 #endif 264 // If our register context and our register info disagree, which should 265 // never happen, don't read past the end of the buffer. 266 if (m_reg_data.GetByteSize() < reg_info->byte_offset + reg_info->byte_size) 267 return false; 268 269 // If we aren't extracting into our own buffer (which only happens when 270 // this function is called from ReadRegisterValue(uint32_t, Scalar&)) then 271 // we transfer bytes from our buffer into the data buffer that was passed 272 // in 273 274 data.SetByteOrder(m_reg_data.GetByteOrder()); 275 data.SetData(m_reg_data, reg_info->byte_offset, reg_info->byte_size); 276 } 277 return true; 278 } 279 280 bool GDBRemoteRegisterContext::WriteRegister(const RegisterInfo *reg_info, 281 const RegisterValue &value) { 282 DataExtractor data; 283 if (value.GetData(data)) 284 return WriteRegisterBytes(reg_info, data, 0); 285 return false; 286 } 287 288 // Helper function for GDBRemoteRegisterContext::WriteRegisterBytes(). 289 bool GDBRemoteRegisterContext::SetPrimordialRegister( 290 const RegisterInfo *reg_info, GDBRemoteCommunicationClient &gdb_comm) { 291 StreamString packet; 292 StringExtractorGDBRemote response; 293 const uint32_t reg = reg_info->kinds[eRegisterKindLLDB]; 294 // Invalidate just this register 295 SetRegisterIsValid(reg, false); 296 297 return gdb_comm.WriteRegister( 298 m_thread.GetProtocolID(), reg_info->kinds[eRegisterKindProcessPlugin], 299 {m_reg_data.PeekData(reg_info->byte_offset, reg_info->byte_size), 300 reg_info->byte_size}); 301 } 302 303 bool GDBRemoteRegisterContext::WriteRegisterBytes(const RegisterInfo *reg_info, 304 DataExtractor &data, 305 uint32_t data_offset) { 306 ExecutionContext exe_ctx(CalculateThread()); 307 308 Process *process = exe_ctx.GetProcessPtr(); 309 Thread *thread = exe_ctx.GetThreadPtr(); 310 if (process == NULL || thread == NULL) 311 return false; 312 313 GDBRemoteCommunicationClient &gdb_comm( 314 ((ProcessGDBRemote *)process)->GetGDBRemote()); 315 316 #if defined(LLDB_CONFIGURATION_DEBUG) 317 assert(m_reg_data.GetByteSize() >= 318 reg_info->byte_offset + reg_info->byte_size); 319 #endif 320 321 // If our register context and our register info disagree, which should never 322 // happen, don't overwrite past the end of the buffer. 323 if (m_reg_data.GetByteSize() < reg_info->byte_offset + reg_info->byte_size) 324 return false; 325 326 // Grab a pointer to where we are going to put this register 327 uint8_t *dst = const_cast<uint8_t *>( 328 m_reg_data.PeekData(reg_info->byte_offset, reg_info->byte_size)); 329 330 if (dst == NULL) 331 return false; 332 333 if (data.CopyByteOrderedData(data_offset, // src offset 334 reg_info->byte_size, // src length 335 dst, // dst 336 reg_info->byte_size, // dst length 337 m_reg_data.GetByteOrder())) // dst byte order 338 { 339 GDBRemoteClientBase::Lock lock(gdb_comm, false); 340 if (lock) { 341 if (m_read_all_at_once) { 342 // Invalidate all register values 343 InvalidateIfNeeded(true); 344 345 // Set all registers in one packet 346 if (gdb_comm.WriteAllRegisters( 347 m_thread.GetProtocolID(), 348 {m_reg_data.GetDataStart(), size_t(m_reg_data.GetByteSize())})) 349 350 { 351 SetAllRegisterValid(false); 352 return true; 353 } 354 } else { 355 bool success = true; 356 357 if (reg_info->value_regs) { 358 // This register is part of another register. In this case we read 359 // the actual register data for any "value_regs", and once all that 360 // data is read, we will have enough data in our register context 361 // bytes for the value of this register 362 363 // Invalidate this composite register first. 364 365 for (uint32_t idx = 0; success; ++idx) { 366 const uint32_t reg = reg_info->value_regs[idx]; 367 if (reg == LLDB_INVALID_REGNUM) 368 break; 369 // We have a valid primordial register as our constituent. Grab the 370 // corresponding register info. 371 const RegisterInfo *value_reg_info = GetRegisterInfoAtIndex(reg); 372 if (value_reg_info == NULL) 373 success = false; 374 else 375 success = SetPrimordialRegister(value_reg_info, gdb_comm); 376 } 377 } else { 378 // This is an actual register, write it 379 success = SetPrimordialRegister(reg_info, gdb_comm); 380 } 381 382 // Check if writing this register will invalidate any other register 383 // values? If so, invalidate them 384 if (reg_info->invalidate_regs) { 385 for (uint32_t idx = 0, reg = reg_info->invalidate_regs[0]; 386 reg != LLDB_INVALID_REGNUM; 387 reg = reg_info->invalidate_regs[++idx]) { 388 SetRegisterIsValid(reg, false); 389 } 390 } 391 392 return success; 393 } 394 } else { 395 Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD | 396 GDBR_LOG_PACKETS)); 397 if (log) { 398 if (log->GetVerbose()) { 399 StreamString strm; 400 gdb_comm.DumpHistory(strm); 401 log->Printf("error: failed to get packet sequence mutex, not sending " 402 "write register for \"%s\":\n%s", 403 reg_info->name, strm.GetData()); 404 } else 405 log->Printf("error: failed to get packet sequence mutex, not sending " 406 "write register for \"%s\"", 407 reg_info->name); 408 } 409 } 410 } 411 return false; 412 } 413 414 bool GDBRemoteRegisterContext::ReadAllRegisterValues( 415 RegisterCheckpoint ®_checkpoint) { 416 ExecutionContext exe_ctx(CalculateThread()); 417 418 Process *process = exe_ctx.GetProcessPtr(); 419 Thread *thread = exe_ctx.GetThreadPtr(); 420 if (process == NULL || thread == NULL) 421 return false; 422 423 GDBRemoteCommunicationClient &gdb_comm( 424 ((ProcessGDBRemote *)process)->GetGDBRemote()); 425 426 uint32_t save_id = 0; 427 if (gdb_comm.SaveRegisterState(thread->GetProtocolID(), save_id)) { 428 reg_checkpoint.SetID(save_id); 429 reg_checkpoint.GetData().reset(); 430 return true; 431 } else { 432 reg_checkpoint.SetID(0); // Invalid save ID is zero 433 return ReadAllRegisterValues(reg_checkpoint.GetData()); 434 } 435 } 436 437 bool GDBRemoteRegisterContext::WriteAllRegisterValues( 438 const RegisterCheckpoint ®_checkpoint) { 439 uint32_t save_id = reg_checkpoint.GetID(); 440 if (save_id != 0) { 441 ExecutionContext exe_ctx(CalculateThread()); 442 443 Process *process = exe_ctx.GetProcessPtr(); 444 Thread *thread = exe_ctx.GetThreadPtr(); 445 if (process == NULL || thread == NULL) 446 return false; 447 448 GDBRemoteCommunicationClient &gdb_comm( 449 ((ProcessGDBRemote *)process)->GetGDBRemote()); 450 451 return gdb_comm.RestoreRegisterState(m_thread.GetProtocolID(), save_id); 452 } else { 453 return WriteAllRegisterValues(reg_checkpoint.GetData()); 454 } 455 } 456 457 bool GDBRemoteRegisterContext::ReadAllRegisterValues( 458 lldb::DataBufferSP &data_sp) { 459 ExecutionContext exe_ctx(CalculateThread()); 460 461 Process *process = exe_ctx.GetProcessPtr(); 462 Thread *thread = exe_ctx.GetThreadPtr(); 463 if (process == NULL || thread == NULL) 464 return false; 465 466 GDBRemoteCommunicationClient &gdb_comm( 467 ((ProcessGDBRemote *)process)->GetGDBRemote()); 468 469 const bool use_g_packet = 470 !gdb_comm.AvoidGPackets((ProcessGDBRemote *)process); 471 472 GDBRemoteClientBase::Lock lock(gdb_comm, false); 473 if (lock) { 474 if (gdb_comm.SyncThreadState(m_thread.GetProtocolID())) 475 InvalidateAllRegisters(); 476 477 if (use_g_packet && 478 (data_sp = gdb_comm.ReadAllRegisters(m_thread.GetProtocolID()))) 479 return true; 480 481 // We're going to read each register 482 // individually and store them as binary data in a buffer. 483 const RegisterInfo *reg_info; 484 485 for (uint32_t i = 0; (reg_info = GetRegisterInfoAtIndex(i)) != NULL; i++) { 486 if (reg_info 487 ->value_regs) // skip registers that are slices of real registers 488 continue; 489 ReadRegisterBytes(reg_info, m_reg_data); 490 // ReadRegisterBytes saves the contents of the register in to the 491 // m_reg_data buffer 492 } 493 data_sp = std::make_shared<DataBufferHeap>( 494 m_reg_data.GetDataStart(), m_reg_info.GetRegisterDataByteSize()); 495 return true; 496 } else { 497 498 Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD | 499 GDBR_LOG_PACKETS)); 500 if (log) { 501 if (log->GetVerbose()) { 502 StreamString strm; 503 gdb_comm.DumpHistory(strm); 504 log->Printf("error: failed to get packet sequence mutex, not sending " 505 "read all registers:\n%s", 506 strm.GetData()); 507 } else 508 log->Printf("error: failed to get packet sequence mutex, not sending " 509 "read all registers"); 510 } 511 } 512 513 data_sp.reset(); 514 return false; 515 } 516 517 bool GDBRemoteRegisterContext::WriteAllRegisterValues( 518 const lldb::DataBufferSP &data_sp) { 519 if (!data_sp || data_sp->GetBytes() == NULL || data_sp->GetByteSize() == 0) 520 return false; 521 522 ExecutionContext exe_ctx(CalculateThread()); 523 524 Process *process = exe_ctx.GetProcessPtr(); 525 Thread *thread = exe_ctx.GetThreadPtr(); 526 if (process == NULL || thread == NULL) 527 return false; 528 529 GDBRemoteCommunicationClient &gdb_comm( 530 ((ProcessGDBRemote *)process)->GetGDBRemote()); 531 532 const bool use_g_packet = 533 !gdb_comm.AvoidGPackets((ProcessGDBRemote *)process); 534 535 GDBRemoteClientBase::Lock lock(gdb_comm, false); 536 if (lock) { 537 // The data_sp contains the G response packet. 538 if (use_g_packet) { 539 if (gdb_comm.WriteAllRegisters( 540 m_thread.GetProtocolID(), 541 {data_sp->GetBytes(), size_t(data_sp->GetByteSize())})) 542 return true; 543 544 uint32_t num_restored = 0; 545 // We need to manually go through all of the registers and restore them 546 // manually 547 DataExtractor restore_data(data_sp, m_reg_data.GetByteOrder(), 548 m_reg_data.GetAddressByteSize()); 549 550 const RegisterInfo *reg_info; 551 552 // The g packet contents may either include the slice registers 553 // (registers defined in terms of other registers, e.g. eax is a subset 554 // of rax) or not. The slice registers should NOT be in the g packet, 555 // but some implementations may incorrectly include them. 556 // 557 // If the slice registers are included in the packet, we must step over 558 // the slice registers when parsing the packet -- relying on the 559 // RegisterInfo byte_offset field would be incorrect. If the slice 560 // registers are not included, then using the byte_offset values into the 561 // data buffer is the best way to find individual register values. 562 563 uint64_t size_including_slice_registers = 0; 564 uint64_t size_not_including_slice_registers = 0; 565 uint64_t size_by_highest_offset = 0; 566 567 for (uint32_t reg_idx = 0; 568 (reg_info = GetRegisterInfoAtIndex(reg_idx)) != NULL; ++reg_idx) { 569 size_including_slice_registers += reg_info->byte_size; 570 if (reg_info->value_regs == NULL) 571 size_not_including_slice_registers += reg_info->byte_size; 572 if (reg_info->byte_offset >= size_by_highest_offset) 573 size_by_highest_offset = reg_info->byte_offset + reg_info->byte_size; 574 } 575 576 bool use_byte_offset_into_buffer; 577 if (size_by_highest_offset == restore_data.GetByteSize()) { 578 // The size of the packet agrees with the highest offset: + size in the 579 // register file 580 use_byte_offset_into_buffer = true; 581 } else if (size_not_including_slice_registers == 582 restore_data.GetByteSize()) { 583 // The size of the packet is the same as concatenating all of the 584 // registers sequentially, skipping the slice registers 585 use_byte_offset_into_buffer = true; 586 } else if (size_including_slice_registers == restore_data.GetByteSize()) { 587 // The slice registers are present in the packet (when they shouldn't 588 // be). Don't try to use the RegisterInfo byte_offset into the 589 // restore_data, it will point to the wrong place. 590 use_byte_offset_into_buffer = false; 591 } else { 592 // None of our expected sizes match the actual g packet data we're 593 // looking at. The most conservative approach here is to use the 594 // running total byte offset. 595 use_byte_offset_into_buffer = false; 596 } 597 598 // In case our register definitions don't include the correct offsets, 599 // keep track of the size of each reg & compute offset based on that. 600 uint32_t running_byte_offset = 0; 601 for (uint32_t reg_idx = 0; 602 (reg_info = GetRegisterInfoAtIndex(reg_idx)) != NULL; 603 ++reg_idx, running_byte_offset += reg_info->byte_size) { 604 // Skip composite aka slice registers (e.g. eax is a slice of rax). 605 if (reg_info->value_regs) 606 continue; 607 608 const uint32_t reg = reg_info->kinds[eRegisterKindLLDB]; 609 610 uint32_t register_offset; 611 if (use_byte_offset_into_buffer) { 612 register_offset = reg_info->byte_offset; 613 } else { 614 register_offset = running_byte_offset; 615 } 616 617 const uint32_t reg_byte_size = reg_info->byte_size; 618 619 const uint8_t *restore_src = 620 restore_data.PeekData(register_offset, reg_byte_size); 621 if (restore_src) { 622 SetRegisterIsValid(reg, false); 623 if (gdb_comm.WriteRegister( 624 m_thread.GetProtocolID(), 625 reg_info->kinds[eRegisterKindProcessPlugin], 626 {restore_src, reg_byte_size})) 627 ++num_restored; 628 } 629 } 630 return num_restored > 0; 631 } else { 632 // For the use_g_packet == false case, we're going to write each register 633 // individually. The data buffer is binary data in this case, instead of 634 // ascii characters. 635 636 bool arm64_debugserver = false; 637 if (m_thread.GetProcess().get()) { 638 const ArchSpec &arch = 639 m_thread.GetProcess()->GetTarget().GetArchitecture(); 640 if (arch.IsValid() && arch.GetMachine() == llvm::Triple::aarch64 && 641 arch.GetTriple().getVendor() == llvm::Triple::Apple && 642 arch.GetTriple().getOS() == llvm::Triple::IOS) { 643 arm64_debugserver = true; 644 } 645 } 646 uint32_t num_restored = 0; 647 const RegisterInfo *reg_info; 648 for (uint32_t i = 0; (reg_info = GetRegisterInfoAtIndex(i)) != NULL; 649 i++) { 650 if (reg_info->value_regs) // skip registers that are slices of real 651 // registers 652 continue; 653 // Skip the fpsr and fpcr floating point status/control register 654 // writing to work around a bug in an older version of debugserver that 655 // would lead to register context corruption when writing fpsr/fpcr. 656 if (arm64_debugserver && (strcmp(reg_info->name, "fpsr") == 0 || 657 strcmp(reg_info->name, "fpcr") == 0)) { 658 continue; 659 } 660 661 SetRegisterIsValid(reg_info, false); 662 if (gdb_comm.WriteRegister(m_thread.GetProtocolID(), 663 reg_info->kinds[eRegisterKindProcessPlugin], 664 {data_sp->GetBytes() + reg_info->byte_offset, 665 reg_info->byte_size})) 666 ++num_restored; 667 } 668 return num_restored > 0; 669 } 670 } else { 671 Log *log(ProcessGDBRemoteLog::GetLogIfAnyCategoryIsSet(GDBR_LOG_THREAD | 672 GDBR_LOG_PACKETS)); 673 if (log) { 674 if (log->GetVerbose()) { 675 StreamString strm; 676 gdb_comm.DumpHistory(strm); 677 log->Printf("error: failed to get packet sequence mutex, not sending " 678 "write all registers:\n%s", 679 strm.GetData()); 680 } else 681 log->Printf("error: failed to get packet sequence mutex, not sending " 682 "write all registers"); 683 } 684 } 685 return false; 686 } 687 688 uint32_t GDBRemoteRegisterContext::ConvertRegisterKindToRegisterNumber( 689 lldb::RegisterKind kind, uint32_t num) { 690 return m_reg_info.ConvertRegisterKindToRegisterNumber(kind, num); 691 } 692 693 void GDBRemoteDynamicRegisterInfo::HardcodeARMRegisters(bool from_scratch) { 694 // For Advanced SIMD and VFP register mapping. 695 static uint32_t g_d0_regs[] = {26, 27, LLDB_INVALID_REGNUM}; // (s0, s1) 696 static uint32_t g_d1_regs[] = {28, 29, LLDB_INVALID_REGNUM}; // (s2, s3) 697 static uint32_t g_d2_regs[] = {30, 31, LLDB_INVALID_REGNUM}; // (s4, s5) 698 static uint32_t g_d3_regs[] = {32, 33, LLDB_INVALID_REGNUM}; // (s6, s7) 699 static uint32_t g_d4_regs[] = {34, 35, LLDB_INVALID_REGNUM}; // (s8, s9) 700 static uint32_t g_d5_regs[] = {36, 37, LLDB_INVALID_REGNUM}; // (s10, s11) 701 static uint32_t g_d6_regs[] = {38, 39, LLDB_INVALID_REGNUM}; // (s12, s13) 702 static uint32_t g_d7_regs[] = {40, 41, LLDB_INVALID_REGNUM}; // (s14, s15) 703 static uint32_t g_d8_regs[] = {42, 43, LLDB_INVALID_REGNUM}; // (s16, s17) 704 static uint32_t g_d9_regs[] = {44, 45, LLDB_INVALID_REGNUM}; // (s18, s19) 705 static uint32_t g_d10_regs[] = {46, 47, LLDB_INVALID_REGNUM}; // (s20, s21) 706 static uint32_t g_d11_regs[] = {48, 49, LLDB_INVALID_REGNUM}; // (s22, s23) 707 static uint32_t g_d12_regs[] = {50, 51, LLDB_INVALID_REGNUM}; // (s24, s25) 708 static uint32_t g_d13_regs[] = {52, 53, LLDB_INVALID_REGNUM}; // (s26, s27) 709 static uint32_t g_d14_regs[] = {54, 55, LLDB_INVALID_REGNUM}; // (s28, s29) 710 static uint32_t g_d15_regs[] = {56, 57, LLDB_INVALID_REGNUM}; // (s30, s31) 711 static uint32_t g_q0_regs[] = { 712 26, 27, 28, 29, LLDB_INVALID_REGNUM}; // (d0, d1) -> (s0, s1, s2, s3) 713 static uint32_t g_q1_regs[] = { 714 30, 31, 32, 33, LLDB_INVALID_REGNUM}; // (d2, d3) -> (s4, s5, s6, s7) 715 static uint32_t g_q2_regs[] = { 716 34, 35, 36, 37, LLDB_INVALID_REGNUM}; // (d4, d5) -> (s8, s9, s10, s11) 717 static uint32_t g_q3_regs[] = { 718 38, 39, 40, 41, LLDB_INVALID_REGNUM}; // (d6, d7) -> (s12, s13, s14, s15) 719 static uint32_t g_q4_regs[] = { 720 42, 43, 44, 45, LLDB_INVALID_REGNUM}; // (d8, d9) -> (s16, s17, s18, s19) 721 static uint32_t g_q5_regs[] = { 722 46, 47, 48, 49, 723 LLDB_INVALID_REGNUM}; // (d10, d11) -> (s20, s21, s22, s23) 724 static uint32_t g_q6_regs[] = { 725 50, 51, 52, 53, 726 LLDB_INVALID_REGNUM}; // (d12, d13) -> (s24, s25, s26, s27) 727 static uint32_t g_q7_regs[] = { 728 54, 55, 56, 57, 729 LLDB_INVALID_REGNUM}; // (d14, d15) -> (s28, s29, s30, s31) 730 static uint32_t g_q8_regs[] = {59, 60, LLDB_INVALID_REGNUM}; // (d16, d17) 731 static uint32_t g_q9_regs[] = {61, 62, LLDB_INVALID_REGNUM}; // (d18, d19) 732 static uint32_t g_q10_regs[] = {63, 64, LLDB_INVALID_REGNUM}; // (d20, d21) 733 static uint32_t g_q11_regs[] = {65, 66, LLDB_INVALID_REGNUM}; // (d22, d23) 734 static uint32_t g_q12_regs[] = {67, 68, LLDB_INVALID_REGNUM}; // (d24, d25) 735 static uint32_t g_q13_regs[] = {69, 70, LLDB_INVALID_REGNUM}; // (d26, d27) 736 static uint32_t g_q14_regs[] = {71, 72, LLDB_INVALID_REGNUM}; // (d28, d29) 737 static uint32_t g_q15_regs[] = {73, 74, LLDB_INVALID_REGNUM}; // (d30, d31) 738 739 // This is our array of composite registers, with each element coming from 740 // the above register mappings. 741 static uint32_t *g_composites[] = { 742 g_d0_regs, g_d1_regs, g_d2_regs, g_d3_regs, g_d4_regs, g_d5_regs, 743 g_d6_regs, g_d7_regs, g_d8_regs, g_d9_regs, g_d10_regs, g_d11_regs, 744 g_d12_regs, g_d13_regs, g_d14_regs, g_d15_regs, g_q0_regs, g_q1_regs, 745 g_q2_regs, g_q3_regs, g_q4_regs, g_q5_regs, g_q6_regs, g_q7_regs, 746 g_q8_regs, g_q9_regs, g_q10_regs, g_q11_regs, g_q12_regs, g_q13_regs, 747 g_q14_regs, g_q15_regs}; 748 749 // clang-format off 750 static RegisterInfo g_register_infos[] = { 751 // NAME ALT SZ OFF ENCODING FORMAT EH_FRAME DWARF GENERIC PROCESS PLUGIN LLDB VALUE REGS INVALIDATE REGS SIZE EXPR SIZE LEN 752 // ====== ====== === === ============= ========== =================== =================== ====================== ============= ==== ========== =============== ========= ======== 753 { "r0", "arg1", 4, 0, eEncodingUint, eFormatHex, { ehframe_r0, dwarf_r0, LLDB_REGNUM_GENERIC_ARG1,0, 0 }, nullptr, nullptr, nullptr, 0 }, 754 { "r1", "arg2", 4, 0, eEncodingUint, eFormatHex, { ehframe_r1, dwarf_r1, LLDB_REGNUM_GENERIC_ARG2,1, 1 }, nullptr, nullptr, nullptr, 0 }, 755 { "r2", "arg3", 4, 0, eEncodingUint, eFormatHex, { ehframe_r2, dwarf_r2, LLDB_REGNUM_GENERIC_ARG3,2, 2 }, nullptr, nullptr, nullptr, 0 }, 756 { "r3", "arg4", 4, 0, eEncodingUint, eFormatHex, { ehframe_r3, dwarf_r3, LLDB_REGNUM_GENERIC_ARG4,3, 3 }, nullptr, nullptr, nullptr, 0 }, 757 { "r4", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r4, dwarf_r4, LLDB_INVALID_REGNUM, 4, 4 }, nullptr, nullptr, nullptr, 0 }, 758 { "r5", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r5, dwarf_r5, LLDB_INVALID_REGNUM, 5, 5 }, nullptr, nullptr, nullptr, 0 }, 759 { "r6", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r6, dwarf_r6, LLDB_INVALID_REGNUM, 6, 6 }, nullptr, nullptr, nullptr, 0 }, 760 { "r7", "fp", 4, 0, eEncodingUint, eFormatHex, { ehframe_r7, dwarf_r7, LLDB_REGNUM_GENERIC_FP, 7, 7 }, nullptr, nullptr, nullptr, 0 }, 761 { "r8", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r8, dwarf_r8, LLDB_INVALID_REGNUM, 8, 8 }, nullptr, nullptr, nullptr, 0 }, 762 { "r9", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r9, dwarf_r9, LLDB_INVALID_REGNUM, 9, 9 }, nullptr, nullptr, nullptr, 0 }, 763 { "r10", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r10, dwarf_r10, LLDB_INVALID_REGNUM, 10, 10 }, nullptr, nullptr, nullptr, 0 }, 764 { "r11", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r11, dwarf_r11, LLDB_INVALID_REGNUM, 11, 11 }, nullptr, nullptr, nullptr, 0 }, 765 { "r12", nullptr, 4, 0, eEncodingUint, eFormatHex, { ehframe_r12, dwarf_r12, LLDB_INVALID_REGNUM, 12, 12 }, nullptr, nullptr, nullptr, 0 }, 766 { "sp", "r13", 4, 0, eEncodingUint, eFormatHex, { ehframe_sp, dwarf_sp, LLDB_REGNUM_GENERIC_SP, 13, 13 }, nullptr, nullptr, nullptr, 0 }, 767 { "lr", "r14", 4, 0, eEncodingUint, eFormatHex, { ehframe_lr, dwarf_lr, LLDB_REGNUM_GENERIC_RA, 14, 14 }, nullptr, nullptr, nullptr, 0 }, 768 { "pc", "r15", 4, 0, eEncodingUint, eFormatHex, { ehframe_pc, dwarf_pc, LLDB_REGNUM_GENERIC_PC, 15, 15 }, nullptr, nullptr, nullptr, 0 }, 769 { "f0", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 16, 16 }, nullptr, nullptr, nullptr, 0 }, 770 { "f1", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 17, 17 }, nullptr, nullptr, nullptr, 0 }, 771 { "f2", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 18, 18 }, nullptr, nullptr, nullptr, 0 }, 772 { "f3", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 19, 19 }, nullptr, nullptr, nullptr, 0 }, 773 { "f4", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 20, 20 }, nullptr, nullptr, nullptr, 0 }, 774 { "f5", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 21, 21 }, nullptr, nullptr, nullptr, 0 }, 775 { "f6", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 22, 22 }, nullptr, nullptr, nullptr, 0 }, 776 { "f7", nullptr, 12, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 23, 23 }, nullptr, nullptr, nullptr, 0 }, 777 { "fps", nullptr, 4, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 24, 24 }, nullptr, nullptr, nullptr, 0 }, 778 { "cpsr","flags", 4, 0, eEncodingUint, eFormatHex, { ehframe_cpsr, dwarf_cpsr, LLDB_INVALID_REGNUM, 25, 25 }, nullptr, nullptr, nullptr, 0 }, 779 { "s0", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s0, LLDB_INVALID_REGNUM, 26, 26 }, nullptr, nullptr, nullptr, 0 }, 780 { "s1", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s1, LLDB_INVALID_REGNUM, 27, 27 }, nullptr, nullptr, nullptr, 0 }, 781 { "s2", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s2, LLDB_INVALID_REGNUM, 28, 28 }, nullptr, nullptr, nullptr, 0 }, 782 { "s3", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s3, LLDB_INVALID_REGNUM, 29, 29 }, nullptr, nullptr, nullptr, 0 }, 783 { "s4", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s4, LLDB_INVALID_REGNUM, 30, 30 }, nullptr, nullptr, nullptr, 0 }, 784 { "s5", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s5, LLDB_INVALID_REGNUM, 31, 31 }, nullptr, nullptr, nullptr, 0 }, 785 { "s6", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s6, LLDB_INVALID_REGNUM, 32, 32 }, nullptr, nullptr, nullptr, 0 }, 786 { "s7", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s7, LLDB_INVALID_REGNUM, 33, 33 }, nullptr, nullptr, nullptr, 0 }, 787 { "s8", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s8, LLDB_INVALID_REGNUM, 34, 34 }, nullptr, nullptr, nullptr, 0 }, 788 { "s9", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s9, LLDB_INVALID_REGNUM, 35, 35 }, nullptr, nullptr, nullptr, 0 }, 789 { "s10", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s10, LLDB_INVALID_REGNUM, 36, 36 }, nullptr, nullptr, nullptr, 0 }, 790 { "s11", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s11, LLDB_INVALID_REGNUM, 37, 37 }, nullptr, nullptr, nullptr, 0 }, 791 { "s12", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s12, LLDB_INVALID_REGNUM, 38, 38 }, nullptr, nullptr, nullptr, 0 }, 792 { "s13", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s13, LLDB_INVALID_REGNUM, 39, 39 }, nullptr, nullptr, nullptr, 0 }, 793 { "s14", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s14, LLDB_INVALID_REGNUM, 40, 40 }, nullptr, nullptr, nullptr, 0 }, 794 { "s15", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s15, LLDB_INVALID_REGNUM, 41, 41 }, nullptr, nullptr, nullptr, 0 }, 795 { "s16", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s16, LLDB_INVALID_REGNUM, 42, 42 }, nullptr, nullptr, nullptr, 0 }, 796 { "s17", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s17, LLDB_INVALID_REGNUM, 43, 43 }, nullptr, nullptr, nullptr, 0 }, 797 { "s18", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s18, LLDB_INVALID_REGNUM, 44, 44 }, nullptr, nullptr, nullptr, 0 }, 798 { "s19", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s19, LLDB_INVALID_REGNUM, 45, 45 }, nullptr, nullptr, nullptr, 0 }, 799 { "s20", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s20, LLDB_INVALID_REGNUM, 46, 46 }, nullptr, nullptr, nullptr, 0 }, 800 { "s21", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s21, LLDB_INVALID_REGNUM, 47, 47 }, nullptr, nullptr, nullptr, 0 }, 801 { "s22", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s22, LLDB_INVALID_REGNUM, 48, 48 }, nullptr, nullptr, nullptr, 0 }, 802 { "s23", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s23, LLDB_INVALID_REGNUM, 49, 49 }, nullptr, nullptr, nullptr, 0 }, 803 { "s24", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s24, LLDB_INVALID_REGNUM, 50, 50 }, nullptr, nullptr, nullptr, 0 }, 804 { "s25", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s25, LLDB_INVALID_REGNUM, 51, 51 }, nullptr, nullptr, nullptr, 0 }, 805 { "s26", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s26, LLDB_INVALID_REGNUM, 52, 52 }, nullptr, nullptr, nullptr, 0 }, 806 { "s27", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s27, LLDB_INVALID_REGNUM, 53, 53 }, nullptr, nullptr, nullptr, 0 }, 807 { "s28", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s28, LLDB_INVALID_REGNUM, 54, 54 }, nullptr, nullptr, nullptr, 0 }, 808 { "s29", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s29, LLDB_INVALID_REGNUM, 55, 55 }, nullptr, nullptr, nullptr, 0 }, 809 { "s30", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s30, LLDB_INVALID_REGNUM, 56, 56 }, nullptr, nullptr, nullptr, 0 }, 810 { "s31", nullptr, 4, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_s31, LLDB_INVALID_REGNUM, 57, 57 }, nullptr, nullptr, nullptr, 0 }, 811 { "fpscr",nullptr, 4, 0, eEncodingUint, eFormatHex, { LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM, 58, 58 }, nullptr, nullptr, nullptr, 0 }, 812 { "d16", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d16, LLDB_INVALID_REGNUM, 59, 59 }, nullptr, nullptr, nullptr, 0 }, 813 { "d17", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d17, LLDB_INVALID_REGNUM, 60, 60 }, nullptr, nullptr, nullptr, 0 }, 814 { "d18", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d18, LLDB_INVALID_REGNUM, 61, 61 }, nullptr, nullptr, nullptr, 0 }, 815 { "d19", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d19, LLDB_INVALID_REGNUM, 62, 62 }, nullptr, nullptr, nullptr, 0 }, 816 { "d20", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d20, LLDB_INVALID_REGNUM, 63, 63 }, nullptr, nullptr, nullptr, 0 }, 817 { "d21", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d21, LLDB_INVALID_REGNUM, 64, 64 }, nullptr, nullptr, nullptr, 0 }, 818 { "d22", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d22, LLDB_INVALID_REGNUM, 65, 65 }, nullptr, nullptr, nullptr, 0 }, 819 { "d23", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d23, LLDB_INVALID_REGNUM, 66, 66 }, nullptr, nullptr, nullptr, 0 }, 820 { "d24", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d24, LLDB_INVALID_REGNUM, 67, 67 }, nullptr, nullptr, nullptr, 0 }, 821 { "d25", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d25, LLDB_INVALID_REGNUM, 68, 68 }, nullptr, nullptr, nullptr, 0 }, 822 { "d26", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d26, LLDB_INVALID_REGNUM, 69, 69 }, nullptr, nullptr, nullptr, 0 }, 823 { "d27", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d27, LLDB_INVALID_REGNUM, 70, 70 }, nullptr, nullptr, nullptr, 0 }, 824 { "d28", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d28, LLDB_INVALID_REGNUM, 71, 71 }, nullptr, nullptr, nullptr, 0 }, 825 { "d29", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d29, LLDB_INVALID_REGNUM, 72, 72 }, nullptr, nullptr, nullptr, 0 }, 826 { "d30", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d30, LLDB_INVALID_REGNUM, 73, 73 }, nullptr, nullptr, nullptr, 0 }, 827 { "d31", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d31, LLDB_INVALID_REGNUM, 74, 74 }, nullptr, nullptr, nullptr, 0 }, 828 { "d0", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d0, LLDB_INVALID_REGNUM, 75, 75 }, g_d0_regs, nullptr, nullptr, 0 }, 829 { "d1", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d1, LLDB_INVALID_REGNUM, 76, 76 }, g_d1_regs, nullptr, nullptr, 0 }, 830 { "d2", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d2, LLDB_INVALID_REGNUM, 77, 77 }, g_d2_regs, nullptr, nullptr, 0 }, 831 { "d3", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d3, LLDB_INVALID_REGNUM, 78, 78 }, g_d3_regs, nullptr, nullptr, 0 }, 832 { "d4", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d4, LLDB_INVALID_REGNUM, 79, 79 }, g_d4_regs, nullptr, nullptr, 0 }, 833 { "d5", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d5, LLDB_INVALID_REGNUM, 80, 80 }, g_d5_regs, nullptr, nullptr, 0 }, 834 { "d6", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d6, LLDB_INVALID_REGNUM, 81, 81 }, g_d6_regs, nullptr, nullptr, 0 }, 835 { "d7", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d7, LLDB_INVALID_REGNUM, 82, 82 }, g_d7_regs, nullptr, nullptr, 0 }, 836 { "d8", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d8, LLDB_INVALID_REGNUM, 83, 83 }, g_d8_regs, nullptr, nullptr, 0 }, 837 { "d9", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d9, LLDB_INVALID_REGNUM, 84, 84 }, g_d9_regs, nullptr, nullptr, 0 }, 838 { "d10", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d10, LLDB_INVALID_REGNUM, 85, 85 }, g_d10_regs, nullptr, nullptr, 0 }, 839 { "d11", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d11, LLDB_INVALID_REGNUM, 86, 86 }, g_d11_regs, nullptr, nullptr, 0 }, 840 { "d12", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d12, LLDB_INVALID_REGNUM, 87, 87 }, g_d12_regs, nullptr, nullptr, 0 }, 841 { "d13", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d13, LLDB_INVALID_REGNUM, 88, 88 }, g_d13_regs, nullptr, nullptr, 0 }, 842 { "d14", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d14, LLDB_INVALID_REGNUM, 89, 89 }, g_d14_regs, nullptr, nullptr, 0 }, 843 { "d15", nullptr, 8, 0, eEncodingIEEE754, eFormatFloat, { LLDB_INVALID_REGNUM, dwarf_d15, LLDB_INVALID_REGNUM, 90, 90 }, g_d15_regs, nullptr, nullptr, 0 }, 844 { "q0", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q0, LLDB_INVALID_REGNUM, 91, 91 }, g_q0_regs, nullptr, nullptr, 0 }, 845 { "q1", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q1, LLDB_INVALID_REGNUM, 92, 92 }, g_q1_regs, nullptr, nullptr, 0 }, 846 { "q2", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q2, LLDB_INVALID_REGNUM, 93, 93 }, g_q2_regs, nullptr, nullptr, 0 }, 847 { "q3", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q3, LLDB_INVALID_REGNUM, 94, 94 }, g_q3_regs, nullptr, nullptr, 0 }, 848 { "q4", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q4, LLDB_INVALID_REGNUM, 95, 95 }, g_q4_regs, nullptr, nullptr, 0 }, 849 { "q5", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q5, LLDB_INVALID_REGNUM, 96, 96 }, g_q5_regs, nullptr, nullptr, 0 }, 850 { "q6", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q6, LLDB_INVALID_REGNUM, 97, 97 }, g_q6_regs, nullptr, nullptr, 0 }, 851 { "q7", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q7, LLDB_INVALID_REGNUM, 98, 98 }, g_q7_regs, nullptr, nullptr, 0 }, 852 { "q8", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q8, LLDB_INVALID_REGNUM, 99, 99 }, g_q8_regs, nullptr, nullptr, 0 }, 853 { "q9", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q9, LLDB_INVALID_REGNUM, 100, 100 }, g_q9_regs, nullptr, nullptr, 0 }, 854 { "q10", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q10, LLDB_INVALID_REGNUM, 101, 101 }, g_q10_regs, nullptr, nullptr, 0 }, 855 { "q11", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q11, LLDB_INVALID_REGNUM, 102, 102 }, g_q11_regs, nullptr, nullptr, 0 }, 856 { "q12", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q12, LLDB_INVALID_REGNUM, 103, 103 }, g_q12_regs, nullptr, nullptr, 0 }, 857 { "q13", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q13, LLDB_INVALID_REGNUM, 104, 104 }, g_q13_regs, nullptr, nullptr, 0 }, 858 { "q14", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q14, LLDB_INVALID_REGNUM, 105, 105 }, g_q14_regs, nullptr, nullptr, 0 }, 859 { "q15", nullptr, 16, 0, eEncodingVector, eFormatVectorOfUInt8, { LLDB_INVALID_REGNUM, dwarf_q15, LLDB_INVALID_REGNUM, 106, 106 }, g_q15_regs, nullptr, nullptr, 0 } 860 }; 861 // clang-format on 862 863 static const uint32_t num_registers = llvm::array_lengthof(g_register_infos); 864 static ConstString gpr_reg_set("General Purpose Registers"); 865 static ConstString sfp_reg_set("Software Floating Point Registers"); 866 static ConstString vfp_reg_set("Floating Point Registers"); 867 size_t i; 868 if (from_scratch) { 869 // Calculate the offsets of the registers 870 // Note that the layout of the "composite" registers (d0-d15 and q0-q15) 871 // which comes after the "primordial" registers is important. This enables 872 // us to calculate the offset of the composite register by using the offset 873 // of its first primordial register. For example, to calculate the offset 874 // of q0, use s0's offset. 875 if (g_register_infos[2].byte_offset == 0) { 876 uint32_t byte_offset = 0; 877 for (i = 0; i < num_registers; ++i) { 878 // For primordial registers, increment the byte_offset by the byte_size 879 // to arrive at the byte_offset for the next register. Otherwise, we 880 // have a composite register whose offset can be calculated by 881 // consulting the offset of its first primordial register. 882 if (!g_register_infos[i].value_regs) { 883 g_register_infos[i].byte_offset = byte_offset; 884 byte_offset += g_register_infos[i].byte_size; 885 } else { 886 const uint32_t first_primordial_reg = 887 g_register_infos[i].value_regs[0]; 888 g_register_infos[i].byte_offset = 889 g_register_infos[first_primordial_reg].byte_offset; 890 } 891 } 892 } 893 for (i = 0; i < num_registers; ++i) { 894 ConstString name; 895 ConstString alt_name; 896 if (g_register_infos[i].name && g_register_infos[i].name[0]) 897 name.SetCString(g_register_infos[i].name); 898 if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0]) 899 alt_name.SetCString(g_register_infos[i].alt_name); 900 901 if (i <= 15 || i == 25) 902 AddRegister(g_register_infos[i], name, alt_name, gpr_reg_set); 903 else if (i <= 24) 904 AddRegister(g_register_infos[i], name, alt_name, sfp_reg_set); 905 else 906 AddRegister(g_register_infos[i], name, alt_name, vfp_reg_set); 907 } 908 } else { 909 // Add composite registers to our primordial registers, then. 910 const size_t num_composites = llvm::array_lengthof(g_composites); 911 const size_t num_dynamic_regs = GetNumRegisters(); 912 const size_t num_common_regs = num_registers - num_composites; 913 RegisterInfo *g_comp_register_infos = g_register_infos + num_common_regs; 914 915 // First we need to validate that all registers that we already have match 916 // the non composite regs. If so, then we can add the registers, else we 917 // need to bail 918 bool match = true; 919 if (num_dynamic_regs == num_common_regs) { 920 for (i = 0; match && i < num_dynamic_regs; ++i) { 921 // Make sure all register names match 922 if (m_regs[i].name && g_register_infos[i].name) { 923 if (strcmp(m_regs[i].name, g_register_infos[i].name)) { 924 match = false; 925 break; 926 } 927 } 928 929 // Make sure all register byte sizes match 930 if (m_regs[i].byte_size != g_register_infos[i].byte_size) { 931 match = false; 932 break; 933 } 934 } 935 } else { 936 // Wrong number of registers. 937 match = false; 938 } 939 // If "match" is true, then we can add extra registers. 940 if (match) { 941 for (i = 0; i < num_composites; ++i) { 942 ConstString name; 943 ConstString alt_name; 944 const uint32_t first_primordial_reg = 945 g_comp_register_infos[i].value_regs[0]; 946 const char *reg_name = g_register_infos[first_primordial_reg].name; 947 if (reg_name && reg_name[0]) { 948 for (uint32_t j = 0; j < num_dynamic_regs; ++j) { 949 const RegisterInfo *reg_info = GetRegisterInfoAtIndex(j); 950 // Find a matching primordial register info entry. 951 if (reg_info && reg_info->name && 952 ::strcasecmp(reg_info->name, reg_name) == 0) { 953 // The name matches the existing primordial entry. Find and 954 // assign the offset, and then add this composite register entry. 955 g_comp_register_infos[i].byte_offset = reg_info->byte_offset; 956 name.SetCString(g_comp_register_infos[i].name); 957 AddRegister(g_comp_register_infos[i], name, alt_name, 958 vfp_reg_set); 959 } 960 } 961 } 962 } 963 } 964 } 965 } 966