Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Fix arm_addr_bits_remove: 26-bit Thumb doesn't exist
@ 2001-10-20 10:23 Ben Harris
  2001-10-20 10:46 ` Richard Earnshaw
  0 siblings, 1 reply; 2+ messages in thread
From: Ben Harris @ 2001-10-20 10:23 UTC (permalink / raw)
  To: gdb-patches

I haven't actually encountered this bug in reality yet, but it looks to me
as if arm_addr_bits_remove() is bogus.  Specifically, it has a case for
Thumb state in a 26-bit mode.  According to the ARM ARM (2nd Edition,
section A8.1), no processor will support both 26-bit mode and thumb state
at all, let alone at the same time.  I suspect this might be a noticable
problem when debugging SVC mode code, since then R15 will have its bottom
bit set, which arm_pc_is_thumb() is likely to interpret as meaning the CPU
is in Thumb state.

ChangeLog entry:

2001-10-20  Ben Harris  <bjh21@netbsd.org>

	* arm-tdep.c (arm_addr_bits_remove): Don't believe in 26-bit
	Thumb.

Patch:
*** arm-tdep.c	2000/07/26 00:32:33
--- arm-tdep.c	2001/10/20 17:14:36
*************** arm_pc_is_thumb_dummy (bfd_vma memaddr)
*** 270,279 ****
  CORE_ADDR
  arm_addr_bits_remove (CORE_ADDR val)
  {
!   if (arm_pc_is_thumb (val))
!     return (val & (arm_apcs_32 ? 0xfffffffe : 0x03fffffe));
    else
!     return (val & (arm_apcs_32 ? 0xfffffffc : 0x03fffffc));
  }

  CORE_ADDR
--- 270,281 ----
  CORE_ADDR
  arm_addr_bits_remove (CORE_ADDR val)
  {
!   if (!arm_apcs_32)
!     return (val & 0x03fffffc);
!   else if (arm_pc_is_thumb (val))
!     return (val & 0xfffffffe);
    else
!     return (val & 0xfffffffc);
  }


-- 
Ben Harris                                                   <bjh21@netbsd.org>
Portmaster, NetBSD/arm26               <URL: http://www.netbsd.org/Ports/arm26/ >


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-10-20 10:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-10-20 10:23 Fix arm_addr_bits_remove: 26-bit Thumb doesn't exist Ben Harris
2001-10-20 10:46 ` Richard Earnshaw

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox