gdb, testsuite: Fix return value in gdb.base/foll-fork.exp
[binutils-gdb.git] / gdb / loongarch-tdep.c
blobaf0d6896143c9ee69f5e050fce620ca456921268
1 /* Target-dependent code for the LoongArch architecture, for GDB.
3 Copyright (C) 2022-2024 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 "arch-utils.h"
21 #include "dwarf2/frame.h"
22 #include "elf-bfd.h"
23 #include "extract-store-integer.h"
24 #include "frame-unwind.h"
25 #include "gdbcore.h"
26 #include "loongarch-tdep.h"
27 #include "reggroups.h"
28 #include "target.h"
29 #include "target-descriptions.h"
30 #include "trad-frame.h"
31 #include "user-regs.h"
33 /* Fetch the instruction at PC. */
35 static insn_t
36 loongarch_fetch_instruction (CORE_ADDR pc)
38 size_t insn_len = loongarch_insn_length (0);
39 gdb_byte buf[insn_len];
40 int err;
42 err = target_read_memory (pc, buf, insn_len);
43 if (err)
44 memory_error (TARGET_XFER_E_IO, pc);
46 return extract_unsigned_integer (buf, insn_len, BFD_ENDIAN_LITTLE);
49 /* Return TRUE if INSN is a unconditional branch instruction, otherwise return FALSE. */
51 static bool
52 loongarch_insn_is_uncond_branch (insn_t insn)
54 if ((insn & 0xfc000000) == 0x4c000000 /* jirl */
55 || (insn & 0xfc000000) == 0x50000000 /* b */
56 || (insn & 0xfc000000) == 0x54000000) /* bl */
57 return true;
58 return false;
61 /* Return TRUE if INSN is a conditional branch instruction, otherwise return FALSE. */
63 static bool
64 loongarch_insn_is_cond_branch (insn_t insn)
66 if ((insn & 0xfc000000) == 0x58000000 /* beq */
67 || (insn & 0xfc000000) == 0x5c000000 /* bne */
68 || (insn & 0xfc000000) == 0x60000000 /* blt */
69 || (insn & 0xfc000000) == 0x64000000 /* bge */
70 || (insn & 0xfc000000) == 0x68000000 /* bltu */
71 || (insn & 0xfc000000) == 0x6c000000 /* bgeu */
72 || (insn & 0xfc000000) == 0x40000000 /* beqz */
73 || (insn & 0xfc000000) == 0x44000000) /* bnez */
74 return true;
75 return false;
78 /* Return TRUE if INSN is a branch instruction, otherwise return FALSE. */
80 static bool
81 loongarch_insn_is_branch (insn_t insn)
83 bool is_uncond = loongarch_insn_is_uncond_branch (insn);
84 bool is_cond = loongarch_insn_is_cond_branch (insn);
86 return (is_uncond || is_cond);
89 /* Return TRUE if INSN is a Load Linked instruction, otherwise return FALSE. */
91 static bool
92 loongarch_insn_is_ll (insn_t insn)
94 if ((insn & 0xff000000) == 0x20000000 /* ll.w */
95 || (insn & 0xff000000) == 0x22000000) /* ll.d */
96 return true;
97 return false;
100 /* Return TRUE if INSN is a Store Conditional instruction, otherwise return FALSE. */
102 static bool
103 loongarch_insn_is_sc (insn_t insn)
105 if ((insn & 0xff000000) == 0x21000000 /* sc.w */
106 || (insn & 0xff000000) == 0x23000000) /* sc.d */
107 return true;
108 return false;
111 /* Analyze the function prologue from START_PC to LIMIT_PC.
112 Return the address of the first instruction past the prologue. */
114 static CORE_ADDR
115 loongarch_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc,
116 CORE_ADDR limit_pc, const frame_info_ptr &this_frame,
117 struct trad_frame_cache *this_cache)
119 CORE_ADDR cur_pc = start_pc, prologue_end = 0;
120 int32_t sp = LOONGARCH_SP_REGNUM;
121 int32_t fp = LOONGARCH_FP_REGNUM;
122 int32_t reg_value[32] = {0};
123 int32_t reg_used[32] = {1, 0};
125 while (cur_pc < limit_pc)
127 insn_t insn = loongarch_fetch_instruction (cur_pc);
128 size_t insn_len = loongarch_insn_length (insn);
129 int32_t rd = loongarch_decode_imm ("0:5", insn, 0);
130 int32_t rj = loongarch_decode_imm ("5:5", insn, 0);
131 int32_t rk = loongarch_decode_imm ("10:5", insn, 0);
132 int32_t si12 = loongarch_decode_imm ("10:12", insn, 1);
133 int32_t si20 = loongarch_decode_imm ("5:20", insn, 1);
135 if ((insn & 0xffc00000) == 0x02c00000 /* addi.d sp,sp,si12 */
136 && rd == sp && rj == sp && si12 < 0)
138 prologue_end = cur_pc + insn_len;
140 else if ((insn & 0xffc00000) == 0x02c00000 /* addi.d fp,sp,si12 */
141 && rd == fp && rj == sp && si12 > 0)
143 prologue_end = cur_pc + insn_len;
145 else if ((insn & 0xffc00000) == 0x29c00000 /* st.d rd,sp,si12 */
146 && rj == sp)
148 prologue_end = cur_pc + insn_len;
150 else if ((insn & 0xff000000) == 0x27000000 /* stptr.d rd,sp,si14 */
151 && rj == sp)
153 prologue_end = cur_pc + insn_len;
155 else if ((insn & 0xfe000000) == 0x14000000) /* lu12i.w rd,si20 */
157 reg_value[rd] = si20 << 12;
158 reg_used[rd] = 1;
160 else if ((insn & 0xffc00000) == 0x03800000) /* ori rd,rj,si12 */
162 if (reg_used[rj])
164 reg_value[rd] = reg_value[rj] | (si12 & 0xfff);
165 reg_used[rd] = 1;
168 else if ((insn & 0xffff8000) == 0x00108000 /* add.d sp,sp,rk */
169 && rd == sp && rj == sp)
171 if (reg_used[rk] == 1 && reg_value[rk] < 0)
173 prologue_end = cur_pc + insn_len;
174 break;
177 else if (loongarch_insn_is_branch (insn))
179 break;
182 cur_pc += insn_len;
185 if (prologue_end == 0)
186 prologue_end = cur_pc;
188 return prologue_end;
191 /* Implement the loongarch_skip_prologue gdbarch method. */
193 static CORE_ADDR
194 loongarch_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
196 CORE_ADDR func_addr;
198 /* See if we can determine the end of the prologue via the symbol table.
199 If so, then return either PC, or the PC after the prologue, whichever
200 is greater. */
201 if (find_pc_partial_function (pc, nullptr, &func_addr, nullptr))
203 CORE_ADDR post_prologue_pc
204 = skip_prologue_using_sal (gdbarch, func_addr);
205 if (post_prologue_pc != 0)
206 return std::max (pc, post_prologue_pc);
209 /* Can't determine prologue from the symbol table, need to examine
210 instructions. */
212 /* Find an upper limit on the function prologue using the debug
213 information. If the debug information could not be used to provide
214 that bound, then use an arbitrary large number as the upper bound. */
215 CORE_ADDR limit_pc = skip_prologue_using_sal (gdbarch, pc);
216 if (limit_pc == 0)
217 limit_pc = pc + 100; /* Arbitrary large number. */
219 return loongarch_scan_prologue (gdbarch, pc, limit_pc, nullptr, nullptr);
222 /* Decode the current instruction and determine the address of the
223 next instruction. */
225 static CORE_ADDR
226 loongarch_next_pc (struct regcache *regcache, CORE_ADDR cur_pc)
228 struct gdbarch *gdbarch = regcache->arch ();
229 loongarch_gdbarch_tdep *tdep = gdbarch_tdep<loongarch_gdbarch_tdep> (gdbarch);
230 insn_t insn = loongarch_fetch_instruction (cur_pc);
231 size_t insn_len = loongarch_insn_length (insn);
232 CORE_ADDR next_pc = cur_pc + insn_len;
234 if ((insn & 0xfc000000) == 0x4c000000) /* jirl rd, rj, offs16 */
236 LONGEST rj = regcache_raw_get_signed (regcache,
237 loongarch_decode_imm ("5:5", insn, 0));
238 next_pc = rj + loongarch_decode_imm ("10:16<<2", insn, 1);
240 else if ((insn & 0xfc000000) == 0x50000000 /* b offs26 */
241 || (insn & 0xfc000000) == 0x54000000) /* bl offs26 */
243 next_pc = cur_pc + loongarch_decode_imm ("0:10|10:16<<2", insn, 1);
245 else if ((insn & 0xfc000000) == 0x58000000) /* beq rj, rd, offs16 */
247 LONGEST rj = regcache_raw_get_signed (regcache,
248 loongarch_decode_imm ("5:5", insn, 0));
249 LONGEST rd = regcache_raw_get_signed (regcache,
250 loongarch_decode_imm ("0:5", insn, 0));
251 if (rj == rd)
252 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
254 else if ((insn & 0xfc000000) == 0x5c000000) /* bne rj, rd, offs16 */
256 LONGEST rj = regcache_raw_get_signed (regcache,
257 loongarch_decode_imm ("5:5", insn, 0));
258 LONGEST rd = regcache_raw_get_signed (regcache,
259 loongarch_decode_imm ("0:5", insn, 0));
260 if (rj != rd)
261 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
263 else if ((insn & 0xfc000000) == 0x60000000) /* blt rj, rd, offs16 */
265 LONGEST rj = regcache_raw_get_signed (regcache,
266 loongarch_decode_imm ("5:5", insn, 0));
267 LONGEST rd = regcache_raw_get_signed (regcache,
268 loongarch_decode_imm ("0:5", insn, 0));
269 if (rj < rd)
270 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
272 else if ((insn & 0xfc000000) == 0x64000000) /* bge rj, rd, offs16 */
274 LONGEST rj = regcache_raw_get_signed (regcache,
275 loongarch_decode_imm ("5:5", insn, 0));
276 LONGEST rd = regcache_raw_get_signed (regcache,
277 loongarch_decode_imm ("0:5", insn, 0));
278 if (rj >= rd)
279 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
281 else if ((insn & 0xfc000000) == 0x68000000) /* bltu rj, rd, offs16 */
283 ULONGEST rj = regcache_raw_get_unsigned (regcache,
284 loongarch_decode_imm ("5:5", insn, 0));
285 ULONGEST rd = regcache_raw_get_unsigned (regcache,
286 loongarch_decode_imm ("0:5", insn, 0));
287 if (rj < rd)
288 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
290 else if ((insn & 0xfc000000) == 0x6c000000) /* bgeu rj, rd, offs16 */
292 ULONGEST rj = regcache_raw_get_unsigned (regcache,
293 loongarch_decode_imm ("5:5", insn, 0));
294 ULONGEST rd = regcache_raw_get_unsigned (regcache,
295 loongarch_decode_imm ("0:5", insn, 0));
296 if (rj >= rd)
297 next_pc = cur_pc + loongarch_decode_imm ("10:16<<2", insn, 1);
299 else if ((insn & 0xfc000000) == 0x40000000) /* beqz rj, offs21 */
301 LONGEST rj = regcache_raw_get_signed (regcache,
302 loongarch_decode_imm ("5:5", insn, 0));
303 if (rj == 0)
304 next_pc = cur_pc + loongarch_decode_imm ("0:5|10:16<<2", insn, 1);
306 else if ((insn & 0xfc000000) == 0x44000000) /* bnez rj, offs21 */
308 LONGEST rj = regcache_raw_get_signed (regcache,
309 loongarch_decode_imm ("5:5", insn, 0));
310 if (rj != 0)
311 next_pc = cur_pc + loongarch_decode_imm ("0:5|10:16<<2", insn, 1);
313 else if ((insn & 0xffff8000) == 0x002b0000) /* syscall */
315 if (tdep->syscall_next_pc != nullptr)
316 next_pc = tdep->syscall_next_pc (get_current_frame ());
319 return next_pc;
322 /* We can't put a breakpoint in the middle of a ll/sc atomic sequence,
323 so look for the end of the sequence and put the breakpoint there. */
325 static std::vector<CORE_ADDR>
326 loongarch_deal_with_atomic_sequence (struct regcache *regcache, CORE_ADDR cur_pc)
328 CORE_ADDR next_pc;
329 std::vector<CORE_ADDR> next_pcs;
330 insn_t insn = loongarch_fetch_instruction (cur_pc);
331 size_t insn_len = loongarch_insn_length (insn);
332 const int atomic_sequence_length = 16;
333 bool found_atomic_sequence_endpoint = false;
335 /* Look for a Load Linked instruction which begins the atomic sequence. */
336 if (!loongarch_insn_is_ll (insn))
337 return {};
339 /* Assume that no atomic sequence is longer than "atomic_sequence_length" instructions. */
340 for (int insn_count = 0; insn_count < atomic_sequence_length; ++insn_count)
342 cur_pc += insn_len;
343 insn = loongarch_fetch_instruction (cur_pc);
345 /* Look for a unconditional branch instruction, fallback to the standard code. */
346 if (loongarch_insn_is_uncond_branch (insn))
348 return {};
350 /* Look for a conditional branch instruction, put a breakpoint in its destination address. */
351 else if (loongarch_insn_is_cond_branch (insn))
353 next_pc = loongarch_next_pc (regcache, cur_pc);
354 next_pcs.push_back (next_pc);
356 /* Look for a Store Conditional instruction which closes the atomic sequence. */
357 else if (loongarch_insn_is_sc (insn))
359 found_atomic_sequence_endpoint = true;
360 next_pc = cur_pc + insn_len;
361 next_pcs.push_back (next_pc);
362 break;
366 /* We didn't find a closing Store Conditional instruction, fallback to the standard code. */
367 if (!found_atomic_sequence_endpoint)
368 return {};
370 return next_pcs;
373 /* Implement the software_single_step gdbarch method */
375 static std::vector<CORE_ADDR>
376 loongarch_software_single_step (struct regcache *regcache)
378 CORE_ADDR cur_pc = regcache_read_pc (regcache);
379 std::vector<CORE_ADDR> next_pcs
380 = loongarch_deal_with_atomic_sequence (regcache, cur_pc);
382 if (!next_pcs.empty ())
383 return next_pcs;
385 CORE_ADDR next_pc = loongarch_next_pc (regcache, cur_pc);
387 return {next_pc};
390 /* Callback function for user_reg_add. */
392 static struct value *
393 value_of_loongarch_user_reg (const frame_info_ptr &frame, const void *baton)
395 return value_of_register ((long long) baton,
396 get_next_frame_sentinel_okay (frame));
399 /* Implement the frame_align gdbarch method. */
401 static CORE_ADDR
402 loongarch_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
404 return align_down (addr, 16);
407 /* Generate, or return the cached frame cache for frame unwinder. */
409 static struct trad_frame_cache *
410 loongarch_frame_cache (const frame_info_ptr &this_frame, void **this_cache)
412 struct trad_frame_cache *cache;
413 CORE_ADDR pc;
415 if (*this_cache != nullptr)
416 return (struct trad_frame_cache *) *this_cache;
418 cache = trad_frame_cache_zalloc (this_frame);
419 *this_cache = cache;
421 trad_frame_set_reg_realreg (cache, LOONGARCH_PC_REGNUM, LOONGARCH_RA_REGNUM);
423 pc = get_frame_address_in_block (this_frame);
424 trad_frame_set_id (cache, frame_id_build_unavailable_stack (pc));
426 return cache;
429 /* Implement the this_id callback for frame unwinder. */
431 static void
432 loongarch_frame_this_id (const frame_info_ptr &this_frame, void **prologue_cache,
433 struct frame_id *this_id)
435 struct trad_frame_cache *info;
437 info = loongarch_frame_cache (this_frame, prologue_cache);
438 trad_frame_get_id (info, this_id);
441 /* Implement the prev_register callback for frame unwinder. */
443 static struct value *
444 loongarch_frame_prev_register (const frame_info_ptr &this_frame,
445 void **prologue_cache, int regnum)
447 struct trad_frame_cache *info;
449 info = loongarch_frame_cache (this_frame, prologue_cache);
450 return trad_frame_get_register (info, this_frame, regnum);
453 static const struct frame_unwind loongarch_frame_unwind = {
454 "loongarch prologue",
455 /*.type =*/NORMAL_FRAME,
456 /*.stop_reason =*/default_frame_unwind_stop_reason,
457 /*.this_id =*/loongarch_frame_this_id,
458 /*.prev_register =*/loongarch_frame_prev_register,
459 /*.unwind_data =*/nullptr,
460 /*.sniffer =*/default_frame_sniffer,
461 /*.dealloc_cache =*/nullptr,
462 /*.prev_arch =*/nullptr,
465 /* Write the contents of buffer VAL into the general-purpose argument
466 register defined by GAR in REGCACHE. GAR indicates the available
467 general-purpose argument registers which should be a value in the
468 range 1 to 8 (LOONGARCH_ARG_REGNUM), which correspond to registers
469 a7 and a0 respectively, that is to say, regnum is a7 if GAR is 1,
470 regnum is a6 if GAR is 2, regnum is a5 if GAR is 3, regnum is a4
471 if GAR is 4, regnum is a3 if GAR is 5, regnum is a2 if GAR is 6,
472 regnum is a1 if GAR is 7, regnum is a0 if GAR is 8. */
474 static void
475 pass_in_gar (struct regcache *regcache, unsigned int gar, const gdb_byte *val)
477 unsigned int regnum = LOONGARCH_ARG_REGNUM - gar + LOONGARCH_A0_REGNUM;
478 regcache->cooked_write (regnum, val);
481 /* Write the contents of buffer VAL into the floating-point argument
482 register defined by FAR in REGCACHE. FAR indicates the available
483 floating-point argument registers which should be a value in the
484 range 1 to 8 (LOONGARCH_ARG_REGNUM), which correspond to registers
485 f7 and f0 respectively, that is to say, regnum is f7 if FAR is 1,
486 regnum is f6 if FAR is 2, regnum is f5 if FAR is 3, regnum is f4
487 if FAR is 4, regnum is f3 if FAR is 5, regnum is f2 if FAR is 6,
488 regnum is f1 if FAR is 7, regnum is f0 if FAR is 8. */
490 static void
491 pass_in_far (struct regcache *regcache, unsigned int far, const gdb_byte *val)
493 unsigned int regnum = LOONGARCH_ARG_REGNUM - far + LOONGARCH_FIRST_FP_REGNUM;
494 regcache->cooked_write (regnum, val);
497 /* Pass a value on the stack. */
499 static void
500 pass_on_stack (struct regcache *regcache, const gdb_byte *val,
501 size_t len, int align, gdb_byte **addr)
503 align = align_up (align, 8);
504 if (align > 16)
505 align = 16;
507 CORE_ADDR align_addr = (CORE_ADDR) (*addr);
508 align_addr = align_up (align_addr, align);
509 *addr = (gdb_byte *) align_addr;
510 memcpy (*addr, val, len);
511 *addr += len;
514 /* Compute the numbers of struct member. */
516 static void
517 compute_struct_member (struct type *type,
518 unsigned int *fixed_point_members,
519 unsigned int *floating_point_members,
520 bool *first_member_is_fixed_point,
521 bool *has_long_double)
523 for (int i = 0; i < type->num_fields (); i++)
525 /* Ignore any static fields. */
526 if (type->field (i).is_static ())
527 continue;
529 struct type *field_type = check_typedef (type->field (i).type ());
531 if ((field_type->code () == TYPE_CODE_FLT
532 && field_type->length () == 16)
533 || (field_type->code () == TYPE_CODE_COMPLEX
534 && field_type->length () == 32))
535 *has_long_double = true;
537 if (field_type->code () == TYPE_CODE_INT
538 || field_type->code () == TYPE_CODE_BOOL
539 || field_type->code () == TYPE_CODE_CHAR
540 || field_type->code () == TYPE_CODE_RANGE
541 || field_type->code () == TYPE_CODE_ENUM
542 || field_type->code () == TYPE_CODE_PTR)
544 (*fixed_point_members)++;
546 if (*floating_point_members == 0)
547 *first_member_is_fixed_point = true;
549 else if (field_type->code () == TYPE_CODE_FLT)
550 (*floating_point_members)++;
551 else if (field_type->code () == TYPE_CODE_STRUCT)
552 compute_struct_member (field_type,
553 fixed_point_members,
554 floating_point_members,
555 first_member_is_fixed_point,
556 has_long_double);
557 else if (field_type->code () == TYPE_CODE_COMPLEX)
558 (*floating_point_members) += 2;
562 /* Compute the lengths and offsets of struct member. */
564 static void
565 struct_member_info (struct type *type,
566 unsigned int *member_offsets,
567 unsigned int *member_lens,
568 unsigned int offset,
569 unsigned int *fields)
571 unsigned int count = type->num_fields ();
572 unsigned int i;
574 for (i = 0; i < count; ++i)
576 if (type->field (i).loc_kind () != FIELD_LOC_KIND_BITPOS)
577 continue;
579 struct type *field_type = check_typedef (type->field (i).type ());
580 int field_offset
581 = offset + type->field (i).loc_bitpos () / TARGET_CHAR_BIT;
583 switch (field_type->code ())
585 case TYPE_CODE_STRUCT:
586 struct_member_info (field_type, member_offsets, member_lens,
587 field_offset, fields);
588 break;
590 case TYPE_CODE_COMPLEX:
591 if (*fields == 0)
593 /* _Complex float */
594 if (field_type->length () == 8)
596 member_offsets[0] = field_offset;
597 member_offsets[1] = field_offset + 4;
598 member_lens[0] = member_lens[1] = 4;
599 *fields = 2;
601 /* _Complex double */
602 else if (field_type->length () == 16)
604 member_offsets[0] = field_offset;
605 member_offsets[1] = field_offset + 8;
606 member_lens[0] = member_lens[1] = 8;
607 *fields = 2;
610 break;
612 default:
613 if (*fields < 2)
615 member_offsets[*fields] = field_offset;
616 member_lens[*fields] = field_type->length ();
618 (*fields)++;
619 break;
622 /* only has special handling for structures with 1 or 2 fields. */
623 if (*fields > 2)
624 return;
628 /* Implement the push_dummy_call gdbarch method. */
630 static CORE_ADDR
631 loongarch_push_dummy_call (struct gdbarch *gdbarch,
632 struct value *function,
633 struct regcache *regcache,
634 CORE_ADDR bp_addr,
635 int nargs,
636 struct value **args,
637 CORE_ADDR sp,
638 function_call_return_method return_method,
639 CORE_ADDR struct_addr)
641 int regsize = register_size (gdbarch, 0);
642 unsigned int gar = LOONGARCH_ARG_REGNUM;
643 unsigned int far = LOONGARCH_ARG_REGNUM;
644 unsigned int fixed_point_members;
645 unsigned int floating_point_members;
646 bool first_member_is_fixed_point;
647 bool has_long_double;
648 unsigned int member_offsets[2];
649 unsigned int member_lens[2];
650 unsigned int fields;
651 gdb_byte buf[1024] = { 0 };
652 gdb_byte *addr = buf;
654 if (return_method != return_method_normal)
655 pass_in_gar (regcache, gar--, (gdb_byte *) &struct_addr);
657 for (int i = 0; i < nargs; i++)
659 struct value *arg = args[i];
660 const gdb_byte *val = arg->contents ().data ();
661 struct type *type = check_typedef (arg->type ());
662 size_t len = type->length ();
663 int align = type_align (type);
664 enum type_code code = type->code ();
665 struct type *func_type = check_typedef (function->type ());
666 bool varargs = (func_type->has_varargs () && i >= func_type->num_fields ());
668 switch (code)
670 case TYPE_CODE_INT:
671 case TYPE_CODE_BOOL:
672 case TYPE_CODE_CHAR:
673 case TYPE_CODE_RANGE:
674 case TYPE_CODE_ENUM:
675 case TYPE_CODE_PTR:
677 /* integer or pointer type is passed in GAR.
678 If no GAR is available, it's passed on the stack.
679 When passed in registers or on the stack,
680 the unsigned integer scalars are zero-extended to GRLEN bits,
681 and the signed integer scalars are sign-extended. */
682 if (type->is_unsigned ())
684 ULONGEST data = extract_unsigned_integer (val, len, BFD_ENDIAN_LITTLE);
685 if (gar > 0)
686 pass_in_gar (regcache, gar--, (gdb_byte *) &data);
687 else
688 pass_on_stack (regcache, (gdb_byte *) &data, len, align, &addr);
690 else
692 LONGEST data = extract_signed_integer (val, len, BFD_ENDIAN_LITTLE);
693 if (gar > 0)
694 pass_in_gar (regcache, gar--, (gdb_byte *) &data);
695 else
696 pass_on_stack (regcache, (gdb_byte *) &data, len, align, &addr);
699 break;
700 case TYPE_CODE_FLT:
701 if (len == 2 * regsize)
703 if (!varargs)
705 /* long double type is passed in a pair of GAR,
706 with the low-order GRLEN bits in the lower-numbered register
707 and the high-order GRLEN bits in the higher-numbered register.
708 If exactly one register is available,
709 the low-order GRLEN bits are passed in the register
710 and the high-order GRLEN bits are passed on the stack.
711 If no GAR is available, it's passed on the stack. */
712 if (gar >= 2)
714 pass_in_gar (regcache, gar--, val);
715 pass_in_gar (regcache, gar--, val + regsize);
717 else if (gar == 1)
719 pass_in_gar (regcache, gar--, val);
720 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
722 else
724 pass_on_stack (regcache, val, len, align, &addr);
727 else
729 /* Variadic arguments are passed in GARs
730 in the same manner as named arguments.
731 And after a variadic argument has been passed on the stack,
732 all future arguments will also be passed on the stack,
733 i.e., the last argument register may be left unused
734 due to the aligned register pair rule.
735 long double data type is passed in an aligned GAR pair,
736 the first register in the pair is even-numbered. */
737 if (gar >= 2)
739 if (gar % 2 == 0)
741 pass_in_gar (regcache, gar--, val);
742 pass_in_gar (regcache, gar--, val + regsize);
744 else
746 gar--;
747 pass_in_gar (regcache, gar--, val);
748 pass_in_gar (regcache, gar--, val + regsize);
751 else if (gar == 1)
753 gar--;
754 pass_on_stack (regcache, val, len, align, &addr);
756 else
758 pass_on_stack (regcache, val, len, align, &addr);
762 else
764 /* The other floating-point type is passed in FAR.
765 If no FAR is available, it's passed in GAR.
766 If no GAR is available, it's passed on the stack. */
767 if (!varargs && far > 0)
768 pass_in_far (regcache, far--, val);
769 else if (gar > 0)
770 pass_in_gar (regcache, gar--, val);
771 else
772 pass_on_stack (regcache, val, len, align, &addr);
774 break;
775 case TYPE_CODE_STRUCT:
777 fixed_point_members = 0;
778 floating_point_members = 0;
779 first_member_is_fixed_point = false;
780 has_long_double = false;
781 member_offsets[0] = member_offsets[1] = 0;
782 member_lens[0] = member_offsets[1] = 0;
783 fields = 0;
784 compute_struct_member (type,
785 &fixed_point_members,
786 &floating_point_members,
787 &first_member_is_fixed_point,
788 &has_long_double);
789 struct_member_info (type, member_offsets, member_lens, 0, &fields);
790 /* If the structure consists of one floating-point member within
791 FRLEN bits wide, it is passed in an FAR if available. If the
792 structure consists of two floating-point members both within
793 FRLEN bits wide, it is passed in two FARs if available. If the
794 structure consists of one integer member within GRLEN bits wide
795 and one floating-point member within FRLEN bits wide, it is
796 passed in a GAR and an FAR if available. */
797 if (has_long_double == false
798 && ((fixed_point_members == 0 && floating_point_members == 1
799 && far >= 1)
800 || (fixed_point_members == 0 && floating_point_members == 2
801 && far >= 2)
802 || (fixed_point_members == 1 && floating_point_members == 1
803 && far >= 1 && gar >= 1)))
805 if (fixed_point_members == 0 && floating_point_members == 1)
807 pass_in_far (regcache, far--, val + member_offsets[0]);
809 else if (fixed_point_members == 0 && floating_point_members == 2)
811 pass_in_far (regcache, far--, val + member_offsets[0]);
812 pass_in_far (regcache, far--, val + member_offsets[1]);
814 else if (fixed_point_members == 1 && floating_point_members == 1)
816 if (first_member_is_fixed_point == false)
818 pass_in_far (regcache, far--, val + member_offsets[0]);
819 pass_in_gar (regcache, gar--, val + member_offsets[1]);
821 else
823 pass_in_gar (regcache, gar--, val + member_offsets[0]);
824 pass_in_far (regcache, far--, val + member_offsets[1]);
828 else if (len > 0 && len <= regsize)
830 /* The structure has only fixed-point members. */
831 if (fixed_point_members > 0 && floating_point_members == 0)
833 /* If there is an available GAR,
834 the structure is passed through the GAR by value passing;
835 If no GAR is available, it's passed on the stack. */
836 if (gar > 0)
837 pass_in_gar (regcache, gar--, val);
838 else
839 pass_on_stack (regcache, val, len, align, &addr);
841 /* The structure has only floating-point members. */
842 else if (fixed_point_members == 0 && floating_point_members > 0)
844 /* The structure has one floating-point member.
845 The argument is passed in a FAR.
846 If no FAR is available, the value is passed in a GAR.
847 if no GAR is available, the value is passed on the stack. */
848 if (floating_point_members == 1)
850 if (!varargs && far > 0)
851 pass_in_far (regcache, far--, val);
852 else if (gar > 0)
853 pass_in_gar (regcache, gar--, val);
854 else
855 pass_on_stack (regcache, val, len, align, &addr);
857 /* The structure has two floating-point members.
858 The argument is passed in a pair of available FAR,
859 with the low-order float member bits in the lower-numbered FAR
860 and the high-order float member bits in the higher-numbered FAR.
861 If the number of available FAR is less than 2, it's passed in a GAR,
862 and passed on the stack if no GAR is available. */
863 else if (floating_point_members == 2)
865 if (!varargs && far >= 2)
867 pass_in_far (regcache, far--, val);
868 pass_in_far (regcache, far--, val + align);
870 else if (gar > 0)
872 pass_in_gar (regcache, gar--, val);
874 else
876 pass_on_stack (regcache, val, len, align, &addr);
880 /* The structure has both fixed-point and floating-point members. */
881 else if (fixed_point_members > 0 && floating_point_members > 0)
883 /* The structure has one float member and multiple fixed-point members.
884 If there are available GAR, the structure is passed in a GAR,
885 and passed on the stack if no GAR is available. */
886 if (floating_point_members == 1 && fixed_point_members > 1)
888 if (gar > 0)
889 pass_in_gar (regcache, gar--, val);
890 else
891 pass_on_stack (regcache, val, len, align, &addr);
893 /* The structure has one float member and one fixed-point member.
894 If one FAR and one GAR are available,
895 the floating-point member of the structure is passed in the FAR,
896 and the fixed-point member of the structure is passed in the GAR.
897 If no floating-point register but one GAR is available, it's passed in GAR;
898 If no GAR is available, it's passed on the stack. */
899 else if (floating_point_members == 1 && fixed_point_members == 1)
901 if (!varargs && far > 0 && gar > 0)
903 if (first_member_is_fixed_point == false)
905 pass_in_far (regcache, far--, val);
906 pass_in_gar (regcache, gar--, val + align);
908 else
910 pass_in_gar (regcache, gar--, val);
911 pass_in_far (regcache, far--, val + align);
914 else
916 if (gar > 0)
917 pass_in_gar (regcache, gar--, val);
918 else
919 pass_on_stack (regcache, val, len, align, &addr);
924 else if (len > regsize && len <= 2 * regsize)
926 /* The structure has only fixed-point members. */
927 if (fixed_point_members > 0 && floating_point_members == 0)
929 /* The argument is passed in a pair of available GAR,
930 with the low-order bits in the lower-numbered GAR
931 and the high-order bits in the higher-numbered GAR.
932 If only one GAR is available,
933 the low-order bits are in the GAR
934 and the high-order bits are on the stack,
935 and passed on the stack if no GAR is available. */
936 if (gar >= 2)
938 pass_in_gar (regcache, gar--, val);
939 pass_in_gar (regcache, gar--, val + regsize);
941 else if (gar == 1)
943 pass_in_gar (regcache, gar--, val);
944 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
946 else
948 pass_on_stack (regcache, val, len, align, &addr);
951 /* The structure has only floating-point members. */
952 else if (fixed_point_members == 0 && floating_point_members > 0)
954 /* The structure has one long double member
955 or one double member and two adjacent float members
956 or 3-4 float members.
957 The argument is passed in a pair of available GAR,
958 with the low-order bits in the lower-numbered GAR
959 and the high-order bits in the higher-numbered GAR.
960 If only one GAR is available,
961 the low-order bits are in the GAR
962 and the high-order bits are on the stack,
963 and passed on the stack if no GAR is available. */
964 if ((len == 16 && floating_point_members == 1)
965 || (len == 16 && floating_point_members == 3)
966 || (len == 12 && floating_point_members == 3)
967 || (len == 16 && floating_point_members == 4))
969 if (gar >= 2)
971 pass_in_gar (regcache, gar--, val);
972 pass_in_gar (regcache, gar--, val + regsize);
974 else if (gar == 1)
976 if (!varargs)
978 pass_in_gar (regcache, gar--, val);
979 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
981 else
983 gar--;
984 pass_on_stack (regcache, val, len, align, &addr);
987 else
989 pass_on_stack (regcache, val, len, align, &addr);
992 /* The structure has two double members
993 or one double member and one float member.
994 The argument is passed in a pair of available FAR,
995 with the low-order bits in the lower-numbered FAR
996 and the high-order bits in the higher-numbered FAR.
997 If no a pair of available FAR,
998 it's passed in a pair of available GAR,
999 with the low-order bits in the lower-numbered GAR
1000 and the high-order bits in the higher-numbered GAR.
1001 If only one GAR is available,
1002 the low-order bits are in the GAR
1003 and the high-order bits are on stack,
1004 and passed on the stack if no GAR is available. */
1005 else if ((len == 16 && floating_point_members == 2)
1006 || (len == 12 && floating_point_members == 2))
1008 if (!varargs && far >= 2)
1010 pass_in_far (regcache, far--, val);
1011 pass_in_far (regcache, far--, val + regsize);
1013 else if (gar >= 2)
1015 pass_in_gar (regcache, gar--, val);
1016 pass_in_gar (regcache, gar--, val + regsize);
1018 else if (gar == 1)
1020 pass_in_gar (regcache, gar--, val);
1021 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
1023 else
1025 pass_on_stack (regcache, val, len, align, &addr);
1029 /* The structure has both fixed-point and floating-point members. */
1030 else if (fixed_point_members > 0 && floating_point_members > 0)
1032 /* The structure has one floating-point member and one fixed-point member. */
1033 if (floating_point_members == 1 && fixed_point_members == 1)
1035 /* If one FAR and one GAR are available,
1036 the floating-point member of the structure is passed in the FAR,
1037 and the fixed-point member of the structure is passed in the GAR;
1038 If no floating-point registers but two GARs are available,
1039 it's passed in the two GARs;
1040 If only one GAR is available,
1041 the low-order bits are in the GAR
1042 and the high-order bits are on the stack;
1043 And it's passed on the stack if no GAR is available. */
1044 if (!varargs && far > 0 && gar > 0)
1046 if (first_member_is_fixed_point == false)
1048 pass_in_far (regcache, far--, val);
1049 pass_in_gar (regcache, gar--, val + regsize);
1051 else
1053 pass_in_gar (regcache, gar--, val);
1054 pass_in_far (regcache, far--, val + regsize);
1057 else if ((!varargs && far == 0 && gar >= 2) || (varargs && gar >= 2))
1059 pass_in_gar (regcache, gar--, val);
1060 pass_in_gar (regcache, gar--, val + regsize);
1062 else if ((!varargs && far == 0 && gar == 1) || (varargs && gar == 1))
1064 pass_in_gar (regcache, gar--, val);
1065 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
1067 else if ((!varargs && far == 0 && gar == 0) || (varargs && gar == 0))
1069 pass_on_stack (regcache, val, len, align, &addr);
1072 else
1074 /* The argument is passed in a pair of available GAR,
1075 with the low-order bits in the lower-numbered GAR
1076 and the high-order bits in the higher-numbered GAR.
1077 If only one GAR is available,
1078 the low-order bits are in the GAR
1079 and the high-order bits are on the stack,
1080 and passed on the stack if no GAR is available. */
1081 if (gar >= 2)
1083 pass_in_gar (regcache, gar--, val);
1084 pass_in_gar (regcache, gar--, val + regsize);
1086 else if (gar == 1)
1088 pass_in_gar (regcache, gar--, val);
1089 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
1091 else
1093 pass_on_stack (regcache, val, len, align, &addr);
1098 else if (len > 2 * regsize)
1100 /* It's passed by reference and are replaced in the argument list with the address.
1101 If there is an available GAR, the reference is passed in the GAR,
1102 and passed on the stack if no GAR is available. */
1103 sp = align_down (sp - len, 16);
1104 write_memory (sp, val, len);
1106 if (gar > 0)
1107 pass_in_gar (regcache, gar--, (const gdb_byte *) &sp);
1108 else
1109 pass_on_stack (regcache, (const gdb_byte*) &sp, len, regsize, &addr);
1112 break;
1113 case TYPE_CODE_UNION:
1114 /* Union is passed in GAR or stack. */
1115 if (len > 0 && len <= regsize)
1117 /* The argument is passed in a GAR,
1118 or on the stack by value if no GAR is available. */
1119 if (gar > 0)
1120 pass_in_gar (regcache, gar--, val);
1121 else
1122 pass_on_stack (regcache, val, len, align, &addr);
1124 else if (len > regsize && len <= 2 * regsize)
1126 /* The argument is passed in a pair of available GAR,
1127 with the low-order bits in the lower-numbered GAR
1128 and the high-order bits in the higher-numbered GAR.
1129 If only one GAR is available,
1130 the low-order bits are in the GAR
1131 and the high-order bits are on the stack.
1132 The arguments are passed on the stack when no GAR is available. */
1133 if (gar >= 2)
1135 pass_in_gar (regcache, gar--, val);
1136 pass_in_gar (regcache, gar--, val + regsize);
1138 else if (gar == 1)
1140 pass_in_gar (regcache, gar--, val);
1141 pass_on_stack (regcache, val + regsize, len - regsize, align, &addr);
1143 else
1145 pass_on_stack (regcache, val, len, align, &addr);
1148 else if (len > 2 * regsize)
1150 /* It's passed by reference and are replaced in the argument list with the address.
1151 If there is an available GAR, the reference is passed in the GAR,
1152 and passed on the stack if no GAR is available. */
1153 sp = align_down (sp - len, 16);
1154 write_memory (sp, val, len);
1156 if (gar > 0)
1157 pass_in_gar (regcache, gar--, (const gdb_byte *) &sp);
1158 else
1159 pass_on_stack (regcache, (const gdb_byte*) &sp, len, regsize, &addr);
1161 break;
1162 case TYPE_CODE_COMPLEX:
1164 struct type *target_type = check_typedef (type->target_type ());
1165 size_t target_len = target_type->length ();
1167 if (target_len < regsize)
1169 /* The complex with two float members
1170 is passed in a pair of available FAR,
1171 with the low-order float member bits in the lower-numbered FAR
1172 and the high-order float member bits in the higher-numbered FAR.
1173 If the number of available FAR is less than 2, it's passed in a GAR,
1174 and passed on the stack if no GAR is available. */
1175 if (!varargs && far >= 2)
1177 pass_in_far (regcache, far--, val);
1178 pass_in_far (regcache, far--, val + align);
1180 else if (gar > 0)
1182 pass_in_gar (regcache, gar--, val);
1184 else
1186 pass_on_stack (regcache, val, len, align, &addr);
1189 else if (target_len == regsize)
1191 /* The complex with two double members
1192 is passed in a pair of available FAR,
1193 with the low-order bits in the lower-numbered FAR
1194 and the high-order bits in the higher-numbered FAR.
1195 If no a pair of available FAR,
1196 it's passed in a pair of available GAR,
1197 with the low-order bits in the lower-numbered GAR
1198 and the high-order bits in the higher-numbered GAR.
1199 If only one GAR is available,
1200 the low-order bits are in the GAR
1201 and the high-order bits are on stack,
1202 and passed on the stack if no GAR is available. */
1204 if (!varargs && far >= 2)
1206 pass_in_far (regcache, far--, val);
1207 pass_in_far (regcache, far--, val + align);
1209 else if (gar >= 2)
1211 pass_in_gar (regcache, gar--, val);
1212 pass_in_gar (regcache, gar--, val + align);
1214 else if (gar == 1)
1216 pass_in_gar (regcache, gar--, val);
1217 pass_on_stack (regcache, val + align, len - align, align, &addr);
1219 else
1221 pass_on_stack (regcache, val, len, align, &addr);
1225 else if (target_len == 2 * regsize)
1227 /* The complex with two long double members
1228 is passed by reference and are replaced in the argument list with the address.
1229 If there is an available GAR, the reference is passed in the GAR,
1230 and passed on the stack if no GAR is available. */
1231 sp = align_down (sp - len, 16);
1232 write_memory (sp, val, len);
1234 if (gar > 0)
1235 pass_in_gar (regcache, gar--, (const gdb_byte *) &sp);
1236 else
1237 pass_on_stack (regcache, (const gdb_byte*) &sp, regsize, regsize, &addr);
1240 break;
1241 default:
1242 break;
1246 if (addr > buf)
1248 sp -= addr - buf;
1249 sp = align_down (sp, 16);
1250 write_memory (sp, buf, addr - buf);
1253 regcache_cooked_write_unsigned (regcache, LOONGARCH_RA_REGNUM, bp_addr);
1254 regcache_cooked_write_unsigned (regcache, LOONGARCH_SP_REGNUM, sp);
1256 return sp;
1259 /* Partial transfer of a cooked register. */
1261 static void
1262 loongarch_xfer_reg (struct regcache *regcache,
1263 int regnum, int len, gdb_byte *readbuf,
1264 const gdb_byte *writebuf, size_t offset)
1266 if (readbuf)
1267 regcache->cooked_read_part (regnum, 0, len, readbuf + offset);
1268 if (writebuf)
1269 regcache->cooked_write_part (regnum, 0, len, writebuf + offset);
1272 /* Implement the return_value gdbarch method. */
1274 static enum return_value_convention
1275 loongarch_return_value (struct gdbarch *gdbarch, struct value *function,
1276 struct type *type, struct regcache *regcache,
1277 gdb_byte *readbuf, const gdb_byte *writebuf)
1279 int regsize = register_size (gdbarch, 0);
1280 enum type_code code = type->code ();
1281 size_t len = type->length ();
1282 unsigned int fixed_point_members;
1283 unsigned int floating_point_members;
1284 bool first_member_is_fixed_point;
1285 bool has_long_double;
1286 unsigned int member_offsets[2];
1287 unsigned int member_lens[2];
1288 unsigned int fields;
1289 int a0 = LOONGARCH_A0_REGNUM;
1290 int a1 = LOONGARCH_A0_REGNUM + 1;
1291 int f0 = LOONGARCH_FIRST_FP_REGNUM;
1292 int f1 = LOONGARCH_FIRST_FP_REGNUM + 1;
1294 switch (code)
1296 case TYPE_CODE_INT:
1297 case TYPE_CODE_BOOL:
1298 case TYPE_CODE_CHAR:
1299 case TYPE_CODE_RANGE:
1300 case TYPE_CODE_ENUM:
1301 case TYPE_CODE_PTR:
1303 /* integer or pointer type.
1304 The return value is passed in a0,
1305 the unsigned integer scalars are zero-extended to GRLEN bits,
1306 and the signed integer scalars are sign-extended. */
1307 if (writebuf)
1309 gdb_byte buf[regsize];
1310 if (type->is_unsigned ())
1312 ULONGEST data = extract_unsigned_integer (writebuf, len, BFD_ENDIAN_LITTLE);
1313 store_unsigned_integer (buf, regsize, BFD_ENDIAN_LITTLE, data);
1315 else
1317 LONGEST data = extract_signed_integer (writebuf, len, BFD_ENDIAN_LITTLE);
1318 store_signed_integer (buf, regsize, BFD_ENDIAN_LITTLE, data);
1320 loongarch_xfer_reg (regcache, a0, regsize, nullptr, buf, 0);
1322 else
1323 loongarch_xfer_reg (regcache, a0, len, readbuf, nullptr, 0);
1325 break;
1326 case TYPE_CODE_FLT:
1327 /* long double type.
1328 The return value is passed in a0 and a1. */
1329 if (len == 2 * regsize)
1331 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1332 loongarch_xfer_reg (regcache, a1, len - regsize, readbuf, writebuf, regsize);
1334 /* float or double type.
1335 The return value is passed in f0. */
1336 else
1338 loongarch_xfer_reg (regcache, f0, len, readbuf, writebuf, 0);
1340 break;
1341 case TYPE_CODE_STRUCT:
1343 fixed_point_members = 0;
1344 floating_point_members = 0;
1345 first_member_is_fixed_point = false;
1346 has_long_double = false;
1347 member_offsets[0] = member_offsets[1] = 0;
1348 member_lens[0] = member_offsets[1] = 0;
1349 fields = 0;
1350 compute_struct_member (type,
1351 &fixed_point_members,
1352 &floating_point_members,
1353 &first_member_is_fixed_point,
1354 &has_long_double);
1355 struct_member_info (type, member_offsets, member_lens, 0, &fields);
1356 /* struct consists of one floating-point member;
1357 struct consists of two floating-point members;
1358 struct consists of one floating-point member
1359 and one integer member. */
1360 if (has_long_double == false
1361 && ((fixed_point_members == 0 && floating_point_members == 1)
1362 || (fixed_point_members == 0 && floating_point_members == 2)
1363 || (fixed_point_members == 1 && floating_point_members == 1)))
1365 if (fixed_point_members == 0 && floating_point_members == 1)
1367 loongarch_xfer_reg (regcache, f0, member_lens[0], readbuf,
1368 writebuf, member_offsets[0]);
1370 else if (fixed_point_members == 0 && floating_point_members == 2)
1372 loongarch_xfer_reg (regcache, f0, member_lens[0], readbuf,
1373 writebuf, member_offsets[0]);
1374 loongarch_xfer_reg (regcache, f1, member_lens[1], readbuf,
1375 writebuf, member_offsets[1]);
1377 else if (fixed_point_members == 1 && floating_point_members == 1)
1379 if (first_member_is_fixed_point == false)
1381 loongarch_xfer_reg (regcache, f0, member_lens[0], readbuf,
1382 writebuf, member_offsets[0]);
1383 loongarch_xfer_reg (regcache, a0, member_lens[1], readbuf,
1384 writebuf, member_offsets[1]);
1386 else
1388 loongarch_xfer_reg (regcache, a0, member_lens[0], readbuf,
1389 writebuf, member_offsets[0]);
1390 loongarch_xfer_reg (regcache, f0, member_lens[1], readbuf,
1391 writebuf, member_offsets[1]);
1395 else if (len > 0 && len <= regsize)
1397 /* The structure has only fixed-point members. */
1398 if (fixed_point_members > 0 && floating_point_members == 0)
1400 /* The return value is passed in a0. */
1401 loongarch_xfer_reg (regcache, a0, len, readbuf, writebuf, 0);
1403 /* The structure has only floating-point members. */
1404 else if (fixed_point_members == 0 && floating_point_members > 0)
1406 /* The structure has one floating-point member.
1407 The return value is passed in f0. */
1408 if (floating_point_members == 1)
1410 loongarch_xfer_reg (regcache, f0, len, readbuf, writebuf, 0);
1412 /* The structure has two floating-point members.
1413 The return value is passed in f0 and f1. */
1414 else if (floating_point_members == 2)
1416 loongarch_xfer_reg (regcache, f0, len / 2, readbuf, writebuf, 0);
1417 loongarch_xfer_reg (regcache, f1, len / 2, readbuf, writebuf, len / 2);
1420 /* The structure has both fixed-point and floating-point members. */
1421 else if (fixed_point_members > 0 && floating_point_members > 0)
1423 /* The structure has one float member and multiple fixed-point members.
1424 The return value is passed in a0. */
1425 if (floating_point_members == 1 && fixed_point_members > 1)
1427 loongarch_xfer_reg (regcache, a0, len, readbuf, writebuf, 0);
1429 /* The structure has one float member and one fixed-point member. */
1430 else if (floating_point_members == 1 && fixed_point_members == 1)
1432 /* The return value is passed in f0 and a0 if the first member is floating-point. */
1433 if (first_member_is_fixed_point == false)
1435 loongarch_xfer_reg (regcache, f0, regsize / 2, readbuf, writebuf, 0);
1436 loongarch_xfer_reg (regcache, a0, regsize / 2, readbuf, writebuf, regsize / 2);
1438 /* The return value is passed in a0 and f0 if the first member is fixed-point. */
1439 else
1441 loongarch_xfer_reg (regcache, a0, regsize / 2, readbuf, writebuf, 0);
1442 loongarch_xfer_reg (regcache, f0, regsize / 2, readbuf, writebuf, regsize / 2);
1447 else if (len > regsize && len <= 2 * regsize)
1449 /* The structure has only fixed-point members. */
1450 if (fixed_point_members > 0 && floating_point_members == 0)
1452 /* The return value is passed in a0 and a1. */
1453 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1454 loongarch_xfer_reg (regcache, a1, len - regsize, readbuf, writebuf, regsize);
1456 /* The structure has only floating-point members. */
1457 else if (fixed_point_members == 0 && floating_point_members > 0)
1459 /* The structure has one long double member
1460 or one double member and two adjacent float members
1461 or 3-4 float members.
1462 The return value is passed in a0 and a1. */
1463 if ((len == 16 && floating_point_members == 1)
1464 || (len == 16 && floating_point_members == 3)
1465 || (len == 12 && floating_point_members == 3)
1466 || (len == 16 && floating_point_members == 4))
1468 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1469 loongarch_xfer_reg (regcache, a1, len - regsize, readbuf, writebuf, regsize);
1471 /* The structure has two double members
1472 or one double member and one float member.
1473 The return value is passed in f0 and f1. */
1474 else if ((len == 16 && floating_point_members == 2)
1475 || (len == 12 && floating_point_members == 2))
1477 loongarch_xfer_reg (regcache, f0, regsize, readbuf, writebuf, 0);
1478 loongarch_xfer_reg (regcache, f1, len - regsize, readbuf, writebuf, regsize);
1481 /* The structure has both fixed-point and floating-point members. */
1482 else if (fixed_point_members > 0 && floating_point_members > 0)
1484 /* The structure has one floating-point member and one fixed-point member. */
1485 if (floating_point_members == 1 && fixed_point_members == 1)
1487 /* The return value is passed in f0 and a0 if the first member is floating-point. */
1488 if (first_member_is_fixed_point == false)
1490 loongarch_xfer_reg (regcache, f0, regsize, readbuf, writebuf, 0);
1491 loongarch_xfer_reg (regcache, a0, len - regsize, readbuf, writebuf, regsize);
1493 /* The return value is passed in a0 and f0 if the first member is fixed-point. */
1494 else
1496 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1497 loongarch_xfer_reg (regcache, f0, len - regsize, readbuf, writebuf, regsize);
1500 else
1502 /* The return value is passed in a0 and a1. */
1503 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1504 loongarch_xfer_reg (regcache, a1, len - regsize, readbuf, writebuf, regsize);
1508 else if (len > 2 * regsize)
1509 return RETURN_VALUE_STRUCT_CONVENTION;
1511 break;
1512 case TYPE_CODE_UNION:
1513 if (len > 0 && len <= regsize)
1515 /* The return value is passed in a0. */
1516 loongarch_xfer_reg (regcache, a0, len, readbuf, writebuf, 0);
1518 else if (len > regsize && len <= 2 * regsize)
1520 /* The return value is passed in a0 and a1. */
1521 loongarch_xfer_reg (regcache, a0, regsize, readbuf, writebuf, 0);
1522 loongarch_xfer_reg (regcache, a1, len - regsize, readbuf, writebuf, regsize);
1524 else if (len > 2 * regsize)
1525 return RETURN_VALUE_STRUCT_CONVENTION;
1526 break;
1527 case TYPE_CODE_COMPLEX:
1528 if (len > 0 && len <= 2 * regsize)
1530 /* The return value is passed in f0 and f1. */
1531 loongarch_xfer_reg (regcache, f0, len / 2, readbuf, writebuf, 0);
1532 loongarch_xfer_reg (regcache, f1, len / 2, readbuf, writebuf, len / 2);
1534 else if (len > 2 * regsize)
1535 return RETURN_VALUE_STRUCT_CONVENTION;
1536 break;
1537 default:
1538 break;
1541 return RETURN_VALUE_REGISTER_CONVENTION;
1544 /* Implement the dwarf2_reg_to_regnum gdbarch method. */
1546 static int
1547 loongarch_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int regnum)
1549 if (regnum >= 0 && regnum < 32)
1550 return regnum;
1551 else if (regnum >= 32 && regnum < 66)
1552 return LOONGARCH_FIRST_FP_REGNUM + regnum - 32;
1553 else
1554 return -1;
1557 static constexpr gdb_byte loongarch_default_breakpoint[] = {0x05, 0x00, 0x2a, 0x00};
1558 typedef BP_MANIPULATION (loongarch_default_breakpoint) loongarch_breakpoint;
1560 /* Extract a set of required target features out of ABFD. If ABFD is nullptr
1561 then a LOONGARCH_GDBARCH_FEATURES is returned in its default state. */
1563 static struct loongarch_gdbarch_features
1564 loongarch_features_from_bfd (const bfd *abfd)
1566 struct loongarch_gdbarch_features features;
1568 /* Now try to improve on the defaults by looking at the binary we are
1569 going to execute. We assume the user knows what they are doing and
1570 that the target will match the binary. Remember, this code path is
1571 only used at all if the target hasn't given us a description, so this
1572 is really a last ditched effort to do something sane before giving
1573 up. */
1574 if (abfd != nullptr && bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1576 unsigned char eclass = elf_elfheader (abfd)->e_ident[EI_CLASS];
1577 int e_flags = elf_elfheader (abfd)->e_flags;
1579 if (eclass == ELFCLASS32)
1580 features.xlen = 4;
1581 else if (eclass == ELFCLASS64)
1582 features.xlen = 8;
1583 else
1584 internal_error (_("unknown ELF header class %d"), eclass);
1586 if (EF_LOONGARCH_IS_SINGLE_FLOAT (e_flags))
1587 features.fputype = SINGLE_FLOAT;
1588 else if (EF_LOONGARCH_IS_DOUBLE_FLOAT (e_flags))
1589 features.fputype = DOUBLE_FLOAT;
1592 return features;
1595 /* Find a suitable default target description. Use the contents of INFO,
1596 specifically the bfd object being executed, to guide the selection of a
1597 suitable default target description. */
1599 static const struct target_desc *
1600 loongarch_find_default_target_description (const struct gdbarch_info info)
1602 /* Extract desired feature set from INFO. */
1603 struct loongarch_gdbarch_features features
1604 = loongarch_features_from_bfd (info.abfd);
1606 /* If the XLEN field is still 0 then we got nothing useful from INFO.BFD,
1607 maybe there was no bfd object. In this case we fall back to a minimal
1608 useful target, the x-register size is selected based on the architecture
1609 from INFO. */
1610 if (features.xlen == 0)
1611 features.xlen = info.bfd_arch_info->bits_per_address == 32 ? 4 : 8;
1613 /* If the FPUTYPE field is still 0 then we got nothing useful from INFO.BFD,
1614 maybe there was no bfd object. In this case we fall back to a usual useful
1615 target with double float. */
1616 if (features.fputype == 0)
1617 features.fputype = DOUBLE_FLOAT;
1619 /* Now build a target description based on the feature set. */
1620 return loongarch_lookup_target_description (features);
1623 static int
1624 loongarch_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
1625 const struct reggroup *group)
1627 if (gdbarch_register_name (gdbarch, regnum) == NULL
1628 || *gdbarch_register_name (gdbarch, regnum) == '\0')
1629 return 0;
1631 int raw_p = regnum < gdbarch_num_regs (gdbarch);
1633 if (group == save_reggroup || group == restore_reggroup)
1634 return raw_p;
1636 if (group == all_reggroup)
1637 return 1;
1639 if (0 <= regnum && regnum <= LOONGARCH_BADV_REGNUM)
1640 return group == general_reggroup;
1642 /* Only ORIG_A0, PC, BADV in general_reggroup */
1643 if (group == general_reggroup)
1644 return 0;
1646 if (LOONGARCH_FIRST_FP_REGNUM <= regnum && regnum <= LOONGARCH_FCSR_REGNUM)
1647 return group == float_reggroup;
1649 /* Only $fx / $fccx / $fcsr in float_reggroup */
1650 if (group == float_reggroup)
1651 return 0;
1653 if (LOONGARCH_FIRST_LSX_REGNUM <= regnum
1654 && regnum < LOONGARCH_FIRST_LASX_REGNUM + LOONGARCH_LINUX_NUM_LASXREGSET)
1655 return group == vector_reggroup;
1657 /* Only $vrx / $xrx in vector_reggroup */
1658 if (group == vector_reggroup)
1659 return 0;
1661 int ret = tdesc_register_in_reggroup_p (gdbarch, regnum, group);
1662 if (ret != -1)
1663 return ret;
1665 return default_register_reggroup_p (gdbarch, regnum, group);
1668 /* Initialize the current architecture based on INFO */
1670 static struct gdbarch *
1671 loongarch_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1673 size_t regnum = 0;
1674 struct loongarch_gdbarch_features features;
1675 tdesc_arch_data_up tdesc_data = tdesc_data_alloc ();
1676 const struct target_desc *tdesc = info.target_desc;
1678 /* Ensure we always have a target description. */
1679 if (!tdesc_has_registers (tdesc))
1680 tdesc = loongarch_find_default_target_description (info);
1682 const struct tdesc_feature *feature_cpu
1683 = tdesc_find_feature (tdesc, "org.gnu.gdb.loongarch.base");
1684 if (feature_cpu == nullptr)
1685 return nullptr;
1688 /* Validate the description provides the mandatory base registers
1689 and allocate their numbers. */
1690 bool valid_p = true;
1691 for (int i = 0; i < 32; i++)
1692 valid_p &= tdesc_numbered_register (feature_cpu, tdesc_data.get (), regnum++,
1693 loongarch_r_normal_name[i] + 1);
1694 valid_p &= tdesc_numbered_register (feature_cpu, tdesc_data.get (), regnum++, "orig_a0");
1695 valid_p &= tdesc_numbered_register (feature_cpu, tdesc_data.get (), regnum++, "pc");
1696 valid_p &= tdesc_numbered_register (feature_cpu, tdesc_data.get (), regnum++, "badv");
1697 if (!valid_p)
1698 return nullptr;
1700 const struct tdesc_feature *feature_fpu
1701 = tdesc_find_feature (tdesc, "org.gnu.gdb.loongarch.fpu");
1702 if (feature_fpu == nullptr)
1703 return nullptr;
1705 /* Validate the description provides the fpu registers and
1706 allocate their numbers. */
1707 regnum = LOONGARCH_FIRST_FP_REGNUM;
1708 for (int i = 0; i < LOONGARCH_LINUX_NUM_FPREGSET; i++)
1709 valid_p &= tdesc_numbered_register (feature_fpu, tdesc_data.get (), regnum++,
1710 loongarch_f_normal_name[i] + 1);
1711 for (int i = 0; i < LOONGARCH_LINUX_NUM_FCC; i++)
1712 valid_p &= tdesc_numbered_register (feature_fpu, tdesc_data.get (), regnum++,
1713 loongarch_c_normal_name[i] + 1);
1714 valid_p &= tdesc_numbered_register (feature_fpu, tdesc_data.get (), regnum++, "fcsr");
1715 if (!valid_p)
1716 return nullptr;
1718 const struct tdesc_feature *feature_lsx
1719 = tdesc_find_feature (tdesc, "org.gnu.gdb.loongarch.lsx");
1720 if (feature_lsx == nullptr)
1721 return nullptr;
1723 /* Validate the description provides the lsx registers and
1724 allocate their numbers. */
1725 regnum = LOONGARCH_FIRST_LSX_REGNUM;
1726 for (int i = 0; i < LOONGARCH_LINUX_NUM_LSXREGSET; i++)
1727 valid_p &= tdesc_numbered_register (feature_lsx, tdesc_data.get (), regnum++,
1728 loongarch_v_normal_name[i] + 1);
1729 if (!valid_p)
1730 return nullptr;
1732 const struct tdesc_feature *feature_lasx
1733 = tdesc_find_feature (tdesc, "org.gnu.gdb.loongarch.lasx");
1734 if (feature_lasx == nullptr)
1735 return nullptr;
1737 /* Validate the description provides the lasx registers and
1738 allocate their numbers. */
1739 regnum = LOONGARCH_FIRST_LASX_REGNUM;
1740 for (int i = 0; i < LOONGARCH_LINUX_NUM_LASXREGSET; i++)
1741 valid_p &= tdesc_numbered_register (feature_lasx, tdesc_data.get (), regnum++,
1742 loongarch_x_normal_name[i] + 1);
1743 if (!valid_p)
1744 return nullptr;
1746 const struct tdesc_feature *feature_lbt
1747 = tdesc_find_feature (tdesc, "org.gnu.gdb.loongarch.lbt");
1748 if (feature_lbt == nullptr)
1749 return nullptr;
1751 /* Validate the description provides the lbt registers and
1752 allocate their numbers. */
1753 regnum = LOONGARCH_FIRST_SCR_REGNUM;
1754 for (int i = 0; i < LOONGARCH_LINUX_NUM_SCR; i++)
1755 valid_p &= tdesc_numbered_register (feature_lbt, tdesc_data.get (), regnum++,
1756 loongarch_cr_normal_name[i] + 1);
1757 valid_p &= tdesc_numbered_register (feature_lbt, tdesc_data.get (), regnum++,
1758 "eflags");
1759 valid_p &= tdesc_numbered_register (feature_lbt, tdesc_data.get (), regnum++,
1760 "ftop");
1761 if (!valid_p)
1762 return nullptr;
1764 /* LoongArch code is always little-endian. */
1765 info.byte_order_for_code = BFD_ENDIAN_LITTLE;
1767 /* Have a look at what the supplied (if any) bfd object requires of the
1768 target, then check that this matches with what the target is
1769 providing. */
1770 struct loongarch_gdbarch_features abi_features
1771 = loongarch_features_from_bfd (info.abfd);
1773 /* If the ABI_FEATURES xlen or fputype is 0 then this indicates we got
1774 no useful abi features from the INFO object. In this case we just
1775 treat the hardware features as defining the abi. */
1776 if (abi_features.xlen == 0)
1778 int xlen_bitsize = tdesc_register_bitsize (feature_cpu, "pc");
1779 features.xlen = (xlen_bitsize / 8);
1780 features.fputype = abi_features.fputype;
1781 abi_features = features;
1783 if (abi_features.fputype == 0)
1785 features.xlen = abi_features.xlen;
1786 features.fputype = DOUBLE_FLOAT;
1787 abi_features = features;
1790 /* Find a candidate among the list of pre-declared architectures. */
1791 for (arches = gdbarch_list_lookup_by_info (arches, &info);
1792 arches != nullptr;
1793 arches = gdbarch_list_lookup_by_info (arches->next, &info))
1795 /* Check that the feature set of the ARCHES matches the feature set
1796 we are looking for. If it doesn't then we can't reuse this
1797 gdbarch. */
1798 loongarch_gdbarch_tdep *candidate_tdep
1799 = gdbarch_tdep<loongarch_gdbarch_tdep> (arches->gdbarch);
1801 if (candidate_tdep->abi_features != abi_features)
1802 continue;
1804 break;
1807 if (arches != nullptr)
1808 return arches->gdbarch;
1810 /* None found, so create a new architecture from the information provided. */
1811 gdbarch *gdbarch
1812 = gdbarch_alloc (&info, gdbarch_tdep_up (new loongarch_gdbarch_tdep));
1813 loongarch_gdbarch_tdep *tdep = gdbarch_tdep<loongarch_gdbarch_tdep> (gdbarch);
1815 tdep->abi_features = abi_features;
1817 /* Target data types. */
1818 set_gdbarch_short_bit (gdbarch, 16);
1819 set_gdbarch_int_bit (gdbarch, 32);
1820 set_gdbarch_long_bit (gdbarch, info.bfd_arch_info->bits_per_address);
1821 set_gdbarch_long_long_bit (gdbarch, 64);
1822 set_gdbarch_float_bit (gdbarch, 32);
1823 set_gdbarch_double_bit (gdbarch, 64);
1824 set_gdbarch_long_double_bit (gdbarch, 128);
1825 set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
1826 set_gdbarch_ptr_bit (gdbarch, info.bfd_arch_info->bits_per_address);
1827 set_gdbarch_char_signed (gdbarch, 0);
1829 info.target_desc = tdesc;
1830 info.tdesc_data = tdesc_data.get ();
1832 for (int i = 0; i < ARRAY_SIZE (loongarch_r_alias); ++i)
1833 if (loongarch_r_alias[i][0] != '\0')
1834 user_reg_add (gdbarch, loongarch_r_alias[i] + 1,
1835 value_of_loongarch_user_reg, (void *) (size_t) i);
1837 for (int i = 0; i < ARRAY_SIZE (loongarch_f_alias); ++i)
1839 if (loongarch_f_alias[i][0] != '\0')
1840 user_reg_add (gdbarch, loongarch_f_alias[i] + 1,
1841 value_of_loongarch_user_reg,
1842 (void *) (size_t) (LOONGARCH_FIRST_FP_REGNUM + i));
1845 /* Information about registers. */
1846 set_gdbarch_num_regs (gdbarch, regnum);
1847 set_gdbarch_sp_regnum (gdbarch, LOONGARCH_SP_REGNUM);
1848 set_gdbarch_pc_regnum (gdbarch, LOONGARCH_PC_REGNUM);
1850 /* Finalise the target description registers. */
1851 tdesc_use_registers (gdbarch, tdesc, std::move (tdesc_data));
1853 /* Functions handling dummy frames. */
1854 set_gdbarch_push_dummy_call (gdbarch, loongarch_push_dummy_call);
1856 /* Return value info */
1857 set_gdbarch_return_value (gdbarch, loongarch_return_value);
1859 /* Advance PC across function entry code. */
1860 set_gdbarch_skip_prologue (gdbarch, loongarch_skip_prologue);
1862 /* Stack grows downward. */
1863 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1865 /* Frame info. */
1866 set_gdbarch_frame_align (gdbarch, loongarch_frame_align);
1868 /* Breakpoint manipulation. */
1869 set_gdbarch_software_single_step (gdbarch, loongarch_software_single_step);
1870 set_gdbarch_breakpoint_kind_from_pc (gdbarch, loongarch_breakpoint::kind_from_pc);
1871 set_gdbarch_sw_breakpoint_from_kind (gdbarch, loongarch_breakpoint::bp_from_kind);
1873 /* Frame unwinders. Use DWARF debug info if available, otherwise use our own unwinder. */
1874 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, loongarch_dwarf2_reg_to_regnum);
1875 dwarf2_append_unwinders (gdbarch);
1876 frame_unwind_append_unwinder (gdbarch, &loongarch_frame_unwind);
1878 /* Hook in OS ABI-specific overrides, if they have been registered. */
1879 gdbarch_init_osabi (info, gdbarch);
1880 set_gdbarch_register_reggroup_p (gdbarch, loongarch_register_reggroup_p);
1882 return gdbarch;
1885 void _initialize_loongarch_tdep ();
1886 void
1887 _initialize_loongarch_tdep ()
1889 gdbarch_register (bfd_arch_loongarch, loongarch_gdbarch_init, nullptr);