1 /* Common target dependent code for GDB on ARM systems.
3 Copyright (C) 1988-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "gdbsupport/common-defs.h"
21 #include "gdbsupport/common-regcache.h"
24 #include "../features/arm/arm-core.c"
25 #include "../features/arm/arm-vfpv2.c"
26 #include "../features/arm/arm-vfpv3.c"
27 #include "../features/arm/xscale-iwmmxt.c"
28 #include "../features/arm/arm-m-profile.c"
29 #include "../features/arm/arm-m-profile-with-fpa.c"
34 thumb_insn_size (unsigned short inst1
)
36 if ((inst1
& 0xe000) == 0xe000 && (inst1
& 0x1800) != 0)
45 condition_true (unsigned long cond
, unsigned long status_reg
)
47 if (cond
== INST_AL
|| cond
== INST_NV
)
53 return ((status_reg
& FLAG_Z
) != 0);
55 return ((status_reg
& FLAG_Z
) == 0);
57 return ((status_reg
& FLAG_C
) != 0);
59 return ((status_reg
& FLAG_C
) == 0);
61 return ((status_reg
& FLAG_N
) != 0);
63 return ((status_reg
& FLAG_N
) == 0);
65 return ((status_reg
& FLAG_V
) != 0);
67 return ((status_reg
& FLAG_V
) == 0);
69 return ((status_reg
& (FLAG_C
| FLAG_Z
)) == FLAG_C
);
71 return ((status_reg
& (FLAG_C
| FLAG_Z
)) != FLAG_C
);
73 return (((status_reg
& FLAG_N
) == 0) == ((status_reg
& FLAG_V
) == 0));
75 return (((status_reg
& FLAG_N
) == 0) != ((status_reg
& FLAG_V
) == 0));
77 return (((status_reg
& FLAG_Z
) == 0)
78 && (((status_reg
& FLAG_N
) == 0)
79 == ((status_reg
& FLAG_V
) == 0)));
81 return (((status_reg
& FLAG_Z
) != 0)
82 || (((status_reg
& FLAG_N
) == 0)
83 != ((status_reg
& FLAG_V
) == 0)));
92 thumb_advance_itstate (unsigned int itstate
)
94 /* Preserve IT[7:5], the first three bits of the condition. Shift
95 the upcoming condition flags left by one bit. */
96 itstate
= (itstate
& 0xe0) | ((itstate
<< 1) & 0x1f);
98 /* If we have finished the IT block, clear the state. */
99 if ((itstate
& 0x0f) == 0)
108 arm_instruction_changes_pc (uint32_t this_instr
)
110 if (bits (this_instr
, 28, 31) == INST_NV
)
111 /* Unconditional instructions. */
112 switch (bits (this_instr
, 24, 27))
116 /* Branch with Link and change to Thumb. */
121 /* Coprocessor register transfer. */
122 if (bits (this_instr
, 12, 15) == 15)
123 error (_("Invalid update to pc in instruction"));
129 switch (bits (this_instr
, 25, 27))
132 if (bits (this_instr
, 23, 24) == 2 && bit (this_instr
, 20) == 0)
134 /* Multiplies and extra load/stores. */
135 if (bit (this_instr
, 4) == 1 && bit (this_instr
, 7) == 1)
136 /* Neither multiplies nor extension load/stores are allowed
140 /* Otherwise, miscellaneous instructions. */
142 /* BX <reg>, BXJ <reg>, BLX <reg> */
143 if (bits (this_instr
, 4, 27) == 0x12fff1
144 || bits (this_instr
, 4, 27) == 0x12fff2
145 || bits (this_instr
, 4, 27) == 0x12fff3)
148 /* Other miscellaneous instructions are unpredictable if they
152 /* Data processing instruction. */
156 if (bits (this_instr
, 12, 15) == 15)
163 /* Media instructions and architecturally undefined instructions. */
164 if (bits (this_instr
, 25, 27) == 3 && bit (this_instr
, 4) == 1)
168 if (bit (this_instr
, 20) == 0)
172 if (bits (this_instr
, 12, 15) == ARM_PC_REGNUM
)
178 /* Load/store multiple. */
179 if (bit (this_instr
, 20) == 1 && bit (this_instr
, 15) == 1)
185 /* Branch and branch with link. */
190 /* Coprocessor transfers or SWIs can not affect PC. */
194 internal_error (__FILE__
, __LINE__
, _("bad value in switch"));
201 thumb_instruction_changes_pc (unsigned short inst
)
203 if ((inst
& 0xff00) == 0xbd00) /* pop {rlist, pc} */
206 if ((inst
& 0xf000) == 0xd000) /* conditional branch */
209 if ((inst
& 0xf800) == 0xe000) /* unconditional branch */
212 if ((inst
& 0xff00) == 0x4700) /* bx REG, blx REG */
215 if ((inst
& 0xff87) == 0x4687) /* mov pc, REG */
218 if ((inst
& 0xf500) == 0xb100) /* CBNZ or CBZ. */
228 thumb2_instruction_changes_pc (unsigned short inst1
, unsigned short inst2
)
230 if ((inst1
& 0xf800) == 0xf000 && (inst2
& 0x8000) == 0x8000)
232 /* Branches and miscellaneous control instructions. */
234 if ((inst2
& 0x1000) != 0 || (inst2
& 0xd001) == 0xc000)
239 else if (inst1
== 0xf3de && (inst2
& 0xff00) == 0x3f00)
241 /* SUBS PC, LR, #imm8. */
244 else if ((inst2
& 0xd000) == 0x8000 && (inst1
& 0x0380) != 0x0380)
246 /* Conditional branch. */
253 if ((inst1
& 0xfe50) == 0xe810)
255 /* Load multiple or RFE. */
257 if (bit (inst1
, 7) && !bit (inst1
, 8))
263 else if (!bit (inst1
, 7) && bit (inst1
, 8))
269 else if (bit (inst1
, 7) && bit (inst1
, 8))
274 else if (!bit (inst1
, 7) && !bit (inst1
, 8))
283 if ((inst1
& 0xffef) == 0xea4f && (inst2
& 0xfff0) == 0x0f00)
285 /* MOV PC or MOVS PC. */
289 if ((inst1
& 0xff70) == 0xf850 && (inst2
& 0xf000) == 0xf000)
292 if (bits (inst1
, 0, 3) == 15)
298 if ((inst2
& 0x0fc0) == 0x0000)
304 if ((inst1
& 0xfff0) == 0xe8d0 && (inst2
& 0xfff0) == 0xf000)
310 if ((inst1
& 0xfff0) == 0xe8d0 && (inst2
& 0xfff0) == 0xf010)
322 shifted_reg_val (struct regcache
*regcache
, unsigned long inst
,
323 int carry
, unsigned long pc_val
, unsigned long status_reg
)
325 unsigned long res
, shift
;
326 int rm
= bits (inst
, 0, 3);
327 unsigned long shifttype
= bits (inst
, 5, 6);
331 int rs
= bits (inst
, 8, 11);
334 : regcache_raw_get_unsigned (regcache
, rs
)) & 0xFF;
337 shift
= bits (inst
, 7, 11);
339 res
= (rm
== ARM_PC_REGNUM
340 ? (pc_val
+ (bit (inst
, 4) ? 12 : 8))
341 : regcache_raw_get_unsigned (regcache
, rm
));
346 res
= shift
>= 32 ? 0 : res
<< shift
;
350 res
= shift
>= 32 ? 0 : res
>> shift
;
356 res
= ((res
& 0x80000000L
)
357 ? ~((~res
) >> shift
) : res
>> shift
);
360 case 3: /* ROR/RRX */
363 res
= (res
>> 1) | (carry
? 0x80000000L
: 0);
365 res
= (res
>> shift
) | (res
<< (32 - shift
));
369 return res
& 0xffffffff;
372 /* See arch/arm.h. */
375 arm_create_target_description (arm_fp_type fp_type
)
377 target_desc_up tdesc
= allocate_target_description ();
379 #ifndef IN_PROCESS_AGENT
380 if (fp_type
== ARM_FP_TYPE_IWMMXT
)
381 set_tdesc_architecture (tdesc
.get (), "iwmmxt");
383 set_tdesc_architecture (tdesc
.get (), "arm");
388 regnum
= create_feature_arm_arm_core (tdesc
.get (), regnum
);
392 case ARM_FP_TYPE_NONE
:
395 case ARM_FP_TYPE_VFPV2
:
396 regnum
= create_feature_arm_arm_vfpv2 (tdesc
.get (), regnum
);
399 case ARM_FP_TYPE_VFPV3
:
400 regnum
= create_feature_arm_arm_vfpv3 (tdesc
.get (), regnum
);
403 case ARM_FP_TYPE_IWMMXT
:
404 regnum
= create_feature_arm_xscale_iwmmxt (tdesc
.get (), regnum
);
408 error (_("Invalid Arm FP type: %d"), fp_type
);
411 return tdesc
.release ();
414 /* See arch/arm.h. */
417 arm_create_mprofile_target_description (arm_m_profile_type m_type
)
419 target_desc
*tdesc
= allocate_target_description ().release ();
421 #ifndef IN_PROCESS_AGENT
422 set_tdesc_architecture (tdesc
, "arm");
429 case ARM_M_TYPE_M_PROFILE
:
430 regnum
= create_feature_arm_arm_m_profile (tdesc
, regnum
);
433 case ARM_M_TYPE_VFP_D16
:
434 regnum
= create_feature_arm_arm_m_profile (tdesc
, regnum
);
435 regnum
= create_feature_arm_arm_vfpv2 (tdesc
, regnum
);
438 case ARM_M_TYPE_WITH_FPA
:
439 regnum
= create_feature_arm_arm_m_profile_with_fpa (tdesc
, regnum
);
443 error (_("Invalid Arm M type: %d"), m_type
);