LLDB mainline
ABISysV_mips64.cpp
Go to the documentation of this file.
1//===-- ABISysV_mips64.cpp ------------------------------------------------===//
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 "ABISysV_mips64.h"
10
11#include "llvm/ADT/STLExtras.h"
12#include "llvm/TargetParser/Triple.h"
13
14#include "lldb/Core/Module.h"
16#include "lldb/Core/Value.h"
18#include "lldb/Target/Process.h"
21#include "lldb/Target/Target.h"
22#include "lldb/Target/Thread.h"
26#include "lldb/Utility/Log.h"
28#include "lldb/Utility/Status.h"
32#include <optional>
33
34using namespace lldb;
35using namespace lldb_private;
36
38
79
81 {"r0",
82 "zero",
83 8,
84 0,
89 nullptr,
90 nullptr,
91 nullptr,
92 },
93 {"r1",
94 "AT",
95 8,
96 0,
101 nullptr,
102 nullptr,
103 nullptr,
104
105 },
106 {"r2",
107 "v0",
108 8,
109 0,
114 nullptr,
115 nullptr,
116 nullptr,
117 },
118 {"r3",
119 "v1",
120 8,
121 0,
126 nullptr,
127 nullptr,
128 nullptr,
129 },
130 {"r4",
131 nullptr,
132 8,
133 0,
138 nullptr,
139 nullptr,
140 nullptr,
141 },
142 {"r5",
143 nullptr,
144 8,
145 0,
150 nullptr,
151 nullptr,
152 nullptr,
153 },
154 {"r6",
155 nullptr,
156 8,
157 0,
162 nullptr,
163 nullptr,
164 nullptr,
165 },
166 {"r7",
167 nullptr,
168 8,
169 0,
174 nullptr,
175 nullptr,
176 nullptr,
177 },
178 {"r8",
179 nullptr,
180 8,
181 0,
186 nullptr,
187 nullptr,
188 nullptr,
189 },
190 {"r9",
191 nullptr,
192 8,
193 0,
198 nullptr,
199 nullptr,
200 nullptr,
201 },
202 {"r10",
203 nullptr,
204 8,
205 0,
210 nullptr,
211 nullptr,
212 nullptr,
213 },
214 {"r11",
215 nullptr,
216 8,
217 0,
222 nullptr,
223 nullptr,
224 nullptr,
225 },
226 {"r12",
227 nullptr,
228 8,
229 0,
234 nullptr,
235 nullptr,
236 nullptr,
237 },
238 {"r13",
239 nullptr,
240 8,
241 0,
246 nullptr,
247 nullptr,
248 nullptr,
249 },
250 {"r14",
251 nullptr,
252 8,
253 0,
258 nullptr,
259 nullptr,
260 nullptr,
261 },
262 {"r15",
263 nullptr,
264 8,
265 0,
270 nullptr,
271 nullptr,
272 nullptr,
273 },
274 {"r16",
275 nullptr,
276 8,
277 0,
282 nullptr,
283 nullptr,
284 nullptr,
285 },
286 {"r17",
287 nullptr,
288 8,
289 0,
294 nullptr,
295 nullptr,
296 nullptr,
297 },
298 {"r18",
299 nullptr,
300 8,
301 0,
306 nullptr,
307 nullptr,
308 nullptr,
309 },
310 {"r19",
311 nullptr,
312 8,
313 0,
318 nullptr,
319 nullptr,
320 nullptr,
321 },
322 {"r20",
323 nullptr,
324 8,
325 0,
330 nullptr,
331 nullptr,
332 nullptr,
333 },
334 {"r21",
335 nullptr,
336 8,
337 0,
342 nullptr,
343 nullptr,
344 nullptr,
345 },
346 {"r22",
347 nullptr,
348 8,
349 0,
354 nullptr,
355 nullptr,
356 nullptr,
357 },
358 {"r23",
359 nullptr,
360 8,
361 0,
366 nullptr,
367 nullptr,
368 nullptr,
369 },
370 {"r24",
371 nullptr,
372 8,
373 0,
378 nullptr,
379 nullptr,
380 nullptr,
381 },
382 {"r25",
383 nullptr,
384 8,
385 0,
390 nullptr,
391 nullptr,
392 nullptr,
393 },
394 {"r26",
395 nullptr,
396 8,
397 0,
402 nullptr,
403 nullptr,
404 nullptr,
405 },
406 {"r27",
407 nullptr,
408 8,
409 0,
414 nullptr,
415 nullptr,
416 nullptr,
417 },
418 {"r28",
419 "gp",
420 8,
421 0,
426 nullptr,
427 nullptr,
428 nullptr,
429 },
430 {"r29",
431 nullptr,
432 8,
433 0,
438 nullptr,
439 nullptr,
440 nullptr,
441 },
442 {"r30",
443 nullptr,
444 8,
445 0,
450 nullptr,
451 nullptr,
452 nullptr,
453 },
454 {"r31",
455 nullptr,
456 8,
457 0,
462 nullptr,
463 nullptr,
464 nullptr,
465 },
466 {"sr",
467 nullptr,
468 4,
469 0,
474 nullptr,
475 nullptr,
476 nullptr,
477 },
478 {"lo",
479 nullptr,
480 8,
481 0,
486 nullptr,
487 nullptr,
488 nullptr,
489 },
490 {"hi",
491 nullptr,
492 8,
493 0,
498 nullptr,
499 nullptr,
500 nullptr,
501 },
502 {"bad",
503 nullptr,
504 8,
505 0,
510 nullptr,
511 nullptr,
512 nullptr,
513 },
514 {"cause",
515 nullptr,
516 8,
517 0,
522 nullptr,
523 nullptr,
524 nullptr,
525 },
526 {"pc",
527 nullptr,
528 8,
529 0,
534 nullptr,
535 nullptr,
536 nullptr,
537 },
538};
539
540static const uint32_t k_num_register_infos = std::size(g_register_infos_mips64);
541
547
548size_t ABISysV_mips64::GetRedZoneSize() const { return 0; }
549
550// Static Functions
551
552ABISP
554 if (arch.GetTriple().isMIPS64())
555 return ABISP(
556 new ABISysV_mips64(std::move(process_sp), MakeMCRegisterInfo(arch)));
557 return ABISP();
558}
559
561 addr_t func_addr, addr_t return_addr,
562 llvm::ArrayRef<addr_t> args) const {
564
565 if (log) {
566 StreamString s;
567 s.Printf("ABISysV_mips64::PrepareTrivialCall (tid = 0x%" PRIx64
568 ", sp = 0x%" PRIx64 ", func_addr = 0x%" PRIx64
569 ", return_addr = 0x%" PRIx64,
570 thread.GetID(), (uint64_t)sp, (uint64_t)func_addr,
571 (uint64_t)return_addr);
572
573 for (size_t i = 0; i < args.size(); ++i)
574 s.Printf(", arg%zd = 0x%" PRIx64, i + 1, args[i]);
575 s.PutCString(")");
576 log->PutString(s.GetString());
577 }
578
579 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
580 if (!reg_ctx)
581 return false;
582
583 const RegisterInfo *reg_info = nullptr;
584
585 if (args.size() > 8) // TODO handle more than 8 arguments
586 return false;
587
588 for (size_t i = 0; i < args.size(); ++i) {
589 reg_info = reg_ctx->GetRegisterInfo(eRegisterKindGeneric,
591 LLDB_LOGF(log, "About to write arg%zd (0x%" PRIx64 ") into %s", i + 1,
592 args[i], reg_info->name);
593 if (!reg_ctx->WriteRegisterFromUnsigned(reg_info, args[i]))
594 return false;
595 }
596
597 // First, align the SP
598
599 LLDB_LOGF(log, "16-byte aligning SP: 0x%" PRIx64 " to 0x%" PRIx64,
600 (uint64_t)sp, (uint64_t)(sp & ~0xfull));
601
602 sp &= ~(0xfull); // 16-byte alignment
603
605 const RegisterInfo *pc_reg_info =
607 const RegisterInfo *sp_reg_info =
609 const RegisterInfo *ra_reg_info =
611 const RegisterInfo *r25_info = reg_ctx->GetRegisterInfoByName("r25", 0);
612 const RegisterInfo *r0_info = reg_ctx->GetRegisterInfoByName("zero", 0);
613
614 LLDB_LOGF(log, "Writing R0: 0x%" PRIx64, (uint64_t)0);
615
616 /* Write r0 with 0, in case we are stopped in syscall,
617 * such setting prevents automatic decrement of the PC.
618 * This clears the bug 23659 for MIPS.
619 */
620 if (!reg_ctx->WriteRegisterFromUnsigned(r0_info, (uint64_t)0))
621 return false;
622
623 LLDB_LOGF(log, "Writing SP: 0x%" PRIx64, (uint64_t)sp);
624
625 // Set "sp" to the requested value
626 if (!reg_ctx->WriteRegisterFromUnsigned(sp_reg_info, sp))
627 return false;
628
629 LLDB_LOGF(log, "Writing RA: 0x%" PRIx64, (uint64_t)return_addr);
630
631 // Set "ra" to the return address
632 if (!reg_ctx->WriteRegisterFromUnsigned(ra_reg_info, return_addr))
633 return false;
634
635 LLDB_LOGF(log, "Writing PC: 0x%" PRIx64, (uint64_t)func_addr);
636
637 // Set pc to the address of the called function.
638 if (!reg_ctx->WriteRegisterFromUnsigned(pc_reg_info, func_addr))
639 return false;
640
641 LLDB_LOGF(log, "Writing r25: 0x%" PRIx64, (uint64_t)func_addr);
642
643 // All callers of position independent functions must place the address of
644 // the called function in t9 (r25)
645 if (!reg_ctx->WriteRegisterFromUnsigned(r25_info, func_addr))
646 return false;
647
648 return true;
649}
650
652 ValueList &values) const {
653 return false;
654}
655
657 lldb::ValueObjectSP &new_value_sp) {
659 if (!new_value_sp) {
660 error = Status::FromErrorString("Empty value object for return value.");
661 return error;
662 }
663
664 CompilerType compiler_type = new_value_sp->GetCompilerType();
665 if (!compiler_type) {
666 error = Status::FromErrorString("Null clang type for return value.");
667 return error;
668 }
669
670 Thread *thread = frame_sp->GetThread().get();
671
672 RegisterContext *reg_ctx = thread->GetRegisterContext().get();
673
674 if (!reg_ctx)
675 error = Status::FromErrorString("no registers are available");
676
677 DataExtractor data;
678 Status data_error;
679 size_t num_bytes = new_value_sp->GetData(data, data_error);
680 if (data_error.Fail()) {
682 "Couldn't convert return value to raw data: %s",
683 data_error.AsCString());
684 return error;
685 }
686
687 const uint32_t type_flags = compiler_type.GetTypeInfo(nullptr);
688
689 if (type_flags & eTypeIsScalar || type_flags & eTypeIsPointer) {
690 if (type_flags & eTypeIsInteger || type_flags & eTypeIsPointer) {
691 lldb::offset_t offset = 0;
692
693 if (num_bytes <= 16) {
694 const RegisterInfo *r2_info = reg_ctx->GetRegisterInfoByName("r2", 0);
695 if (num_bytes <= 8) {
696 uint64_t raw_value = data.GetMaxU64(&offset, num_bytes);
697
698 if (!reg_ctx->WriteRegisterFromUnsigned(r2_info, raw_value))
699 error = Status::FromErrorString("failed to write register r2");
700 } else {
701 uint64_t raw_value = data.GetMaxU64(&offset, 8);
702 if (reg_ctx->WriteRegisterFromUnsigned(r2_info, raw_value)) {
703 const RegisterInfo *r3_info =
704 reg_ctx->GetRegisterInfoByName("r3", 0);
705 raw_value = data.GetMaxU64(&offset, num_bytes - offset);
706
707 if (!reg_ctx->WriteRegisterFromUnsigned(r3_info, raw_value))
708 error = Status::FromErrorString("failed to write register r3");
709 } else
710 error = Status::FromErrorString("failed to write register r2");
711 }
712 } else {
714 "We don't support returning longer than 128 bit "
715 "integer values at present.");
716 }
717 } else if (type_flags & eTypeIsFloat) {
718 error = Status::FromErrorString("TODO: Handle Float Types.");
719 }
720 } else if (type_flags & eTypeIsVector) {
721 error =
722 Status::FromErrorString("returning vector values are not supported");
723 }
724
725 return error;
726}
727
729 Thread &thread, CompilerType &return_compiler_type) const {
730 ValueObjectSP return_valobj_sp;
731 return return_valobj_sp;
732}
733
735 Thread &thread, CompilerType &return_compiler_type) const {
736 ValueObjectSP return_valobj_sp;
737 Value value;
739
740 ExecutionContext exe_ctx(thread.shared_from_this());
741 if (exe_ctx.GetTargetPtr() == nullptr || exe_ctx.GetProcessPtr() == nullptr)
742 return return_valobj_sp;
743
744 value.SetCompilerType(return_compiler_type);
745
746 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
747 if (!reg_ctx)
748 return return_valobj_sp;
749
750 Target *target = exe_ctx.GetTargetPtr();
751 const ArchSpec target_arch = target->GetArchitecture();
752 ByteOrder target_byte_order = target_arch.GetByteOrder();
753 std::optional<uint64_t> byte_size =
754 llvm::expectedToOptional(return_compiler_type.GetByteSize(&thread));
755 if (!byte_size)
756 return return_valobj_sp;
757 const uint32_t type_flags = return_compiler_type.GetTypeInfo(nullptr);
758 uint32_t fp_flag =
760
761 const RegisterInfo *r2_info = reg_ctx->GetRegisterInfoByName("r2", 0);
762 const RegisterInfo *r3_info = reg_ctx->GetRegisterInfoByName("r3", 0);
763 assert(r2_info && r3_info && "Basic registers should always be present.");
764
765 if (type_flags & eTypeIsScalar || type_flags & eTypeIsPointer) {
767
768 bool success = false;
769 if (type_flags & eTypeIsInteger || type_flags & eTypeIsPointer) {
770 // Extract the register context so we can read arguments from registers
771 // In MIPS register "r2" (v0) holds the integer function return values
772
773 uint64_t raw_value = reg_ctx->ReadRegisterAsUnsigned(r2_info, 0);
774
775 const bool is_signed = (type_flags & eTypeIsSigned) != 0;
776 switch (*byte_size) {
777 default:
778 break;
779
780 case sizeof(uint64_t):
781 if (is_signed)
782 value.GetScalar() = (int64_t)(raw_value);
783 else
784 value.GetScalar() = (uint64_t)(raw_value);
785 success = true;
786 break;
787
788 case sizeof(uint32_t):
789 if (is_signed)
790 value.GetScalar() = (int32_t)(raw_value & UINT32_MAX);
791 else
792 value.GetScalar() = (uint32_t)(raw_value & UINT32_MAX);
793 success = true;
794 break;
795
796 case sizeof(uint16_t):
797 if (is_signed)
798 value.GetScalar() = (int16_t)(raw_value & UINT16_MAX);
799 else
800 value.GetScalar() = (uint16_t)(raw_value & UINT16_MAX);
801 success = true;
802 break;
803
804 case sizeof(uint8_t):
805 if (is_signed)
806 value.GetScalar() = (int8_t)(raw_value & UINT8_MAX);
807 else
808 value.GetScalar() = (uint8_t)(raw_value & UINT8_MAX);
809 success = true;
810 break;
811 }
812 } else if (type_flags & eTypeIsFloat) {
813 if (type_flags & eTypeIsComplex) {
814 // Don't handle complex yet.
815 } else if (IsSoftFloat(fp_flag)) {
816 uint64_t raw_value = reg_ctx->ReadRegisterAsUnsigned(r2_info, 0);
817 switch (*byte_size) {
818 case 4:
819 value.GetScalar() = *((float *)(&raw_value));
820 success = true;
821 break;
822 case 8:
823 value.GetScalar() = *((double *)(&raw_value));
824 success = true;
825 break;
826 case 16:
827 uint64_t result[2];
828 if (target_byte_order == eByteOrderLittle) {
829 result[0] = raw_value;
830 result[1] = reg_ctx->ReadRegisterAsUnsigned(r3_info, 0);
831 value.GetScalar() = *((long double *)(result));
832 } else {
833 result[0] = reg_ctx->ReadRegisterAsUnsigned(r3_info, 0);
834 result[1] = raw_value;
835 value.GetScalar() = *((long double *)(result));
836 }
837 success = true;
838 break;
839 }
840
841 } else {
842 if (*byte_size <= sizeof(long double)) {
843 const RegisterInfo *f0_info = reg_ctx->GetRegisterInfoByName("f0", 0);
844
845 RegisterValue f0_value;
846 DataExtractor f0_data;
847
848 reg_ctx->ReadRegister(f0_info, f0_value);
849
850 f0_value.GetData(f0_data);
851
852 lldb::offset_t offset = 0;
853 if (*byte_size == sizeof(float)) {
854 value.GetScalar() = (float)f0_data.GetFloat(&offset);
855 success = true;
856 } else if (*byte_size == sizeof(double)) {
857 value.GetScalar() = (double)f0_data.GetDouble(&offset);
858 success = true;
859 } else if (*byte_size == sizeof(long double)) {
860 const RegisterInfo *f2_info =
861 reg_ctx->GetRegisterInfoByName("f2", 0);
862 RegisterValue f2_value;
863 DataExtractor f2_data;
864 reg_ctx->ReadRegister(f2_info, f2_value);
865 DataExtractor *copy_from_extractor = nullptr;
866 WritableDataBufferSP data_sp(new DataBufferHeap(16, 0));
867 DataExtractor return_ext(
868 data_sp, target_byte_order,
870
871 if (target_byte_order == eByteOrderLittle) {
872 copy_from_extractor = &f0_data;
873 copy_from_extractor->CopyByteOrderedData(
874 0, 8, data_sp->GetBytes(), *byte_size - 8, target_byte_order);
875 f2_value.GetData(f2_data);
876 copy_from_extractor = &f2_data;
877 copy_from_extractor->CopyByteOrderedData(
878 0, 8, data_sp->GetBytes() + 8, *byte_size - 8,
879 target_byte_order);
880 } else {
881 copy_from_extractor = &f0_data;
882 copy_from_extractor->CopyByteOrderedData(
883 0, 8, data_sp->GetBytes() + 8, *byte_size - 8,
884 target_byte_order);
885 f2_value.GetData(f2_data);
886 copy_from_extractor = &f2_data;
887 copy_from_extractor->CopyByteOrderedData(
888 0, 8, data_sp->GetBytes(), *byte_size - 8, target_byte_order);
889 }
890
891 return_valobj_sp = ValueObjectConstResult::Create(
892 &thread, return_compiler_type, ConstString(""), return_ext);
893 return return_valobj_sp;
894 }
895 }
896 }
897 }
898
899 if (success)
900 return_valobj_sp = ValueObjectConstResult::Create(
901 thread.GetStackFrameAtIndex(0).get(), value, ConstString(""));
902 } else if (type_flags & eTypeIsStructUnion || type_flags & eTypeIsClass ||
903 type_flags & eTypeIsVector) {
904 // Any structure of up to 16 bytes in size is returned in the registers.
905 if (*byte_size <= 16) {
906 WritableDataBufferSP data_sp(new DataBufferHeap(16, 0));
907 DataExtractor return_ext(data_sp, target_byte_order,
909
910 RegisterValue r2_value, r3_value, f0_value, f1_value, f2_value;
911 // Tracks how much bytes of r2 and r3 registers we've consumed so far
912 uint32_t integer_bytes = 0;
913
914 // True if return values are in FP return registers.
915 bool use_fp_regs = false;
916 // True if we found any non floating point field in structure.
917 bool found_non_fp_field = false;
918 // True if return values are in r2 register.
919 bool use_r2 = false;
920 // True if return values are in r3 register.
921 bool use_r3 = false;
922 // True if the result is copied into our data buffer
923 bool sucess = false;
924 std::string name;
925 bool is_complex;
926 uint32_t count;
927 const uint32_t num_children = return_compiler_type.GetNumFields();
928
929 // A structure consisting of one or two FP values (and nothing else) will
930 // be returned in the two FP return-value registers i.e fp0 and fp2.
931 if (num_children <= 2) {
932 uint64_t field_bit_offset = 0;
933
934 // Check if this structure contains only floating point fields
935 for (uint32_t idx = 0; idx < num_children; idx++) {
936 CompilerType field_compiler_type =
937 return_compiler_type.GetFieldAtIndex(idx, name, &field_bit_offset,
938 nullptr, nullptr);
939
940 if (field_compiler_type.IsFloatingPointType(count, is_complex))
941 use_fp_regs = true;
942 else
943 found_non_fp_field = true;
944 }
945
946 if (use_fp_regs && !found_non_fp_field) {
947 // We have one or two FP-only values in this structure. Get it from
948 // f0/f2 registers.
949 DataExtractor f0_data, f1_data, f2_data;
950 const RegisterInfo *f0_info = reg_ctx->GetRegisterInfoByName("f0", 0);
951 const RegisterInfo *f1_info = reg_ctx->GetRegisterInfoByName("f1", 0);
952 const RegisterInfo *f2_info = reg_ctx->GetRegisterInfoByName("f2", 0);
953
954 reg_ctx->ReadRegister(f0_info, f0_value);
955 reg_ctx->ReadRegister(f2_info, f2_value);
956
957 f0_value.GetData(f0_data);
958
959 for (uint32_t idx = 0; idx < num_children; idx++) {
960 CompilerType field_compiler_type =
961 return_compiler_type.GetFieldAtIndex(
962 idx, name, &field_bit_offset, nullptr, nullptr);
963 std::optional<uint64_t> field_byte_width = llvm::expectedToOptional(
964 field_compiler_type.GetByteSize(&thread));
965 if (!field_byte_width)
966 return return_valobj_sp;
967
968 DataExtractor *copy_from_extractor = nullptr;
969 uint64_t return_value[2];
970 offset_t offset = 0;
971
972 if (idx == 0) {
973 // This case is for long double type.
974 if (*field_byte_width == 16) {
975
976 // If structure contains long double type, then it is returned
977 // in fp0/fp1 registers.
978 if (target_byte_order == eByteOrderLittle) {
979 return_value[0] = f0_data.GetU64(&offset);
980 reg_ctx->ReadRegister(f1_info, f1_value);
981 f1_value.GetData(f1_data);
982 offset = 0;
983 return_value[1] = f1_data.GetU64(&offset);
984 } else {
985 return_value[1] = f0_data.GetU64(&offset);
986 reg_ctx->ReadRegister(f1_info, f1_value);
987 f1_value.GetData(f1_data);
988 offset = 0;
989 return_value[0] = f1_data.GetU64(&offset);
990 }
991
992 f0_data.SetData(return_value, *field_byte_width,
993 target_byte_order);
994 }
995 copy_from_extractor = &f0_data; // This is in f0, copy from
996 // register to our result
997 // structure
998 } else {
999 f2_value.GetData(f2_data);
1000 // This is in f2, copy from register to our result structure
1001 copy_from_extractor = &f2_data;
1002 }
1003
1004 // Sanity check to avoid crash
1005 if (!copy_from_extractor ||
1006 *field_byte_width > copy_from_extractor->GetByteSize())
1007 return return_valobj_sp;
1008
1009 // copy the register contents into our data buffer
1010 copy_from_extractor->CopyByteOrderedData(
1011 0, *field_byte_width,
1012 data_sp->GetBytes() + (field_bit_offset / 8), *field_byte_width,
1013 target_byte_order);
1014 }
1015
1016 // The result is in our data buffer. Create a variable object out of
1017 // it
1018 return_valobj_sp = ValueObjectConstResult::Create(
1019 &thread, return_compiler_type, ConstString(""), return_ext);
1020
1021 return return_valobj_sp;
1022 }
1023 }
1024
1025 // If we reach here, it means this structure either contains more than
1026 // two fields or it contains at least one non floating point type. In
1027 // that case, all fields are returned in GP return registers.
1028 for (uint32_t idx = 0; idx < num_children; idx++) {
1029 uint64_t field_bit_offset = 0;
1030 bool is_signed;
1031 uint32_t padding;
1032
1033 CompilerType field_compiler_type = return_compiler_type.GetFieldAtIndex(
1034 idx, name, &field_bit_offset, nullptr, nullptr);
1035 std::optional<uint64_t> field_byte_width =
1036 llvm::expectedToOptional(field_compiler_type.GetByteSize(&thread));
1037
1038 // if we don't know the size of the field (e.g. invalid type), just
1039 // bail out
1040 if (!field_byte_width || *field_byte_width == 0)
1041 break;
1042
1043 uint32_t field_byte_offset = field_bit_offset / 8;
1044
1045 if (field_compiler_type.IsIntegerOrEnumerationType(is_signed) ||
1046 field_compiler_type.IsPointerType() ||
1047 field_compiler_type.IsFloatingPointType(count, is_complex)) {
1048 padding = field_byte_offset - integer_bytes;
1049
1050 if (integer_bytes < 8) {
1051 // We have not yet consumed r2 completely.
1052 if (integer_bytes + *field_byte_width + padding <= 8) {
1053 // This field fits in r2, copy its value from r2 to our result
1054 // structure
1055 integer_bytes = integer_bytes + *field_byte_width +
1056 padding; // Increase the consumed bytes.
1057 use_r2 = true;
1058 } else {
1059 // There isn't enough space left in r2 for this field, so this
1060 // will be in r3.
1061 integer_bytes = integer_bytes + *field_byte_width +
1062 padding; // Increase the consumed bytes.
1063 use_r3 = true;
1064 }
1065 }
1066 // We already have consumed at-least 8 bytes that means r2 is done,
1067 // and this field will be in r3. Check if this field can fit in r3.
1068 else if (integer_bytes + *field_byte_width + padding <= 16) {
1069 integer_bytes = integer_bytes + *field_byte_width + padding;
1070 use_r3 = true;
1071 } else {
1072 // There isn't any space left for this field, this should not
1073 // happen as we have already checked the overall size is not
1074 // greater than 16 bytes. For now, return a nullptr return value
1075 // object.
1076 return return_valobj_sp;
1077 }
1078 }
1079 }
1080 // Vector types up to 16 bytes are returned in GP return registers
1081 if (type_flags & eTypeIsVector) {
1082 if (*byte_size <= 8)
1083 use_r2 = true;
1084 else {
1085 use_r2 = true;
1086 use_r3 = true;
1087 }
1088 }
1089
1090 if (use_r2) {
1091 reg_ctx->ReadRegister(r2_info, r2_value);
1092
1093 const size_t bytes_copied = r2_value.GetAsMemoryData(
1094 *r2_info, data_sp->GetBytes(), r2_info->byte_size,
1095 target_byte_order, error);
1096 if (bytes_copied != r2_info->byte_size)
1097 return return_valobj_sp;
1098 sucess = true;
1099 }
1100 if (use_r3) {
1101 reg_ctx->ReadRegister(r3_info, r3_value);
1102 const size_t bytes_copied = r3_value.GetAsMemoryData(
1103 *r3_info, data_sp->GetBytes() + r2_info->byte_size,
1104 r3_info->byte_size, target_byte_order, error);
1105
1106 if (bytes_copied != r3_info->byte_size)
1107 return return_valobj_sp;
1108 sucess = true;
1109 }
1110 if (sucess) {
1111 // The result is in our data buffer. Create a variable object out of
1112 // it
1113 return_valobj_sp = ValueObjectConstResult::Create(
1114 &thread, return_compiler_type, ConstString(""), return_ext);
1115 }
1116 return return_valobj_sp;
1117 }
1118
1119 // Any structure/vector greater than 16 bytes in size is returned in
1120 // memory. The pointer to that memory is returned in r2.
1121 uint64_t mem_address = reg_ctx->ReadRegisterAsUnsigned(
1122 reg_ctx->GetRegisterInfoByName("r2", 0), 0);
1123
1124 // We have got the address. Create a memory object out of it
1125 return_valobj_sp = ValueObjectMemory::Create(
1126 &thread, "", Address(mem_address, nullptr), return_compiler_type);
1127 }
1128 return return_valobj_sp;
1129}
1130
1132 UnwindPlan::Row row;
1133
1134 // Our Call Frame Address is the stack pointer value
1136
1137 // The previous PC is in the RA, all other registers are the same.
1139
1140 auto plan_sp = std::make_shared<UnwindPlan>(eRegisterKindDWARF);
1141 plan_sp->AppendRow(std::move(row));
1142 plan_sp->SetSourceName("mips64 at-func-entry default");
1143 plan_sp->SetSourcedFromCompiler(eLazyBoolNo);
1144 plan_sp->SetReturnAddressRegister(dwarf_r31);
1145 return plan_sp;
1146}
1147
1149 UnwindPlan::Row row;
1150
1153
1155
1156 auto plan_sp = std::make_shared<UnwindPlan>(eRegisterKindDWARF);
1157 plan_sp->AppendRow(std::move(row));
1158 plan_sp->SetSourceName("mips64 default unwind plan");
1159 plan_sp->SetSourcedFromCompiler(eLazyBoolNo);
1160 plan_sp->SetUnwindPlanValidAtAllInstructions(eLazyBoolNo);
1161 plan_sp->SetUnwindPlanForSignalTrap(eLazyBoolNo);
1162 return plan_sp;
1163}
1164
1166 return !RegisterIsCalleeSaved(reg_info);
1167}
1168
1169bool ABISysV_mips64::IsSoftFloat(uint32_t fp_flag) const {
1171}
1172
1174 if (reg_info) {
1175 // Preserved registers are :
1176 // r16-r23, r28, r29, r30, r31
1177
1178 int reg = ((reg_info->byte_offset) / 8);
1179
1180 bool save = (reg >= 16) && (reg <= 23);
1181 save |= (reg >= 28) && (reg <= 31);
1182
1183 return save;
1184 }
1185 return false;
1186}
1187
1190 GetPluginNameStatic(), "System V ABI for mips64 targets", CreateInstance);
1191}
1192
static const uint32_t k_num_register_infos
static const RegisterInfo g_register_infos_mips64[]
dwarf_regnums
@ dwarf_r7
@ dwarf_r21
@ dwarf_r24
@ dwarf_r12
@ dwarf_hi
@ dwarf_r3
@ dwarf_r13
@ dwarf_r2
@ dwarf_r8
@ dwarf_r28
@ dwarf_bad
@ dwarf_r11
@ dwarf_r31
@ dwarf_sr
@ dwarf_r19
@ dwarf_r1
@ dwarf_r26
@ dwarf_r9
@ dwarf_pc
@ dwarf_r29
@ dwarf_r16
@ dwarf_r18
@ dwarf_r17
@ dwarf_r15
@ dwarf_lo
@ dwarf_r23
@ dwarf_r10
@ dwarf_cause
@ dwarf_r14
@ dwarf_r6
@ dwarf_r25
@ dwarf_r30
@ dwarf_r0
@ dwarf_r5
@ dwarf_r20
@ dwarf_r27
@ dwarf_r4
@ dwarf_r22
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOGF(log,...)
Definition Log.h:376
#define LLDB_PLUGIN_DEFINE(PluginName)
static llvm::StringRef GetPluginNameStatic()
bool RegisterIsCalleeSaved(const lldb_private::RegisterInfo *reg_info)
bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp, lldb::addr_t functionAddress, lldb::addr_t returnAddress, llvm::ArrayRef< lldb::addr_t > args) const override
lldb_private::Status SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObjectSP &new_value) override
bool RegisterIsVolatile(const lldb_private::RegisterInfo *reg_info) override
static void Initialize()
const lldb_private::RegisterInfo * GetRegisterInfoArray(uint32_t &count) override
static void Terminate()
lldb::ValueObjectSP GetReturnValueObjectSimple(lldb_private::Thread &thread, lldb_private::CompilerType &ast_type) const
bool GetArgumentValues(lldb_private::Thread &thread, lldb_private::ValueList &values) const override
lldb::UnwindPlanSP CreateFunctionEntryUnwindPlan() override
lldb::ValueObjectSP GetReturnValueObjectImpl(lldb_private::Thread &thread, lldb_private::CompilerType &type) const override
lldb::UnwindPlanSP CreateDefaultUnwindPlan() override
bool IsSoftFloat(uint32_t fp_flag) const
size_t GetRedZoneSize() const override
static lldb::ABISP CreateInstance(lldb::ProcessSP process_sp, const lldb_private::ArchSpec &arch)
static std::unique_ptr< llvm::MCRegisterInfo > MakeMCRegisterInfo(const ArchSpec &arch)
Utility function to construct a MCRegisterInfo using the ArchSpec triple.
Definition ABI.cpp:234
A section + offset based address class.
Definition Address.h:62
An architecture specification class.
Definition ArchSpec.h:31
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
Definition ArchSpec.cpp:685
llvm::Triple & GetTriple()
Architecture triple accessor.
Definition ArchSpec.h:468
uint32_t GetFlags() const
Definition ArchSpec.h:539
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
Definition ArchSpec.cpp:732
Generic representation of a type in a programming language.
CompilerType GetFieldAtIndex(size_t idx, std::string &name, uint64_t *bit_offset_ptr, uint32_t *bitfield_bit_size_ptr, bool *is_bitfield_ptr) const
llvm::Expected< uint64_t > GetByteSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bytes.
bool IsFloatingPointType(uint32_t &count, bool &is_complex) const
uint32_t GetNumFields() const
bool IsIntegerOrEnumerationType(bool &is_signed) const
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
bool IsPointerType(CompilerType *pointee_type=nullptr) const
A uniqued constant string class.
Definition ConstString.h:40
A subclass of DataBuffer that stores a data buffer on the heap.
An data extractor class.
float GetFloat(lldb::offset_t *offset_ptr) const
Extract a float from *offset_ptr.
uint64_t GetU64(lldb::offset_t *offset_ptr) const
Extract a uint64_t value from *offset_ptr.
uint64_t GetByteSize() const
Get the number of bytes contained in this object.
lldb::offset_t SetData(const void *bytes, lldb::offset_t length, lldb::ByteOrder byte_order)
Set data with a buffer that is caller owned.
uint64_t GetMaxU64(lldb::offset_t *offset_ptr, size_t byte_size) const
Extract an unsigned integer of size byte_size from *offset_ptr.
lldb::offset_t CopyByteOrderedData(lldb::offset_t src_offset, lldb::offset_t src_len, void *dst, lldb::offset_t dst_len, lldb::ByteOrder dst_byte_order) const
Copy dst_len bytes from *offset_ptr and ensure the copied data is treated as a value that can be swap...
double GetDouble(lldb::offset_t *offset_ptr) const
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
Target * GetTargetPtr() const
Returns a pointer to the target object.
Process * GetProcessPtr() const
Returns a pointer to the process object.
void PutString(llvm::StringRef str)
Definition Log.cpp:147
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool UnregisterPlugin(ABICreateInstance create_callback)
uint64_t ReadRegisterAsUnsigned(uint32_t reg, uint64_t fail_value)
const RegisterInfo * GetRegisterInfo(lldb::RegisterKind reg_kind, uint32_t reg_num)
bool WriteRegisterFromUnsigned(uint32_t reg, uint64_t uval)
const RegisterInfo * GetRegisterInfoByName(llvm::StringRef reg_name, uint32_t start_idx=0)
virtual bool ReadRegister(const RegisterInfo *reg_info, RegisterValue &reg_value)=0
bool GetData(DataExtractor &data) const
uint32_t GetAsMemoryData(const RegisterInfo &reg_info, void *dst, uint32_t dst_len, lldb::ByteOrder dst_byte_order, Status &error) const
An error handling class.
Definition Status.h:118
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
Definition Status.cpp:106
static Status FromErrorString(const char *str)
Definition Status.h:141
bool Fail() const
Test for error condition.
Definition Status.cpp:294
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
Definition Status.cpp:195
llvm::StringRef GetString() const
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition Stream.cpp:65
const ArchSpec & GetArchitecture() const
Definition Target.h:1067
void SetIsRegisterPlusOffset(uint32_t reg_num, int32_t offset)
Definition UnwindPlan.h:240
const FAValue & GetCFAValue() const
Definition UnwindPlan.h:365
bool SetRegisterLocationToRegister(uint32_t reg_num, uint32_t other_reg_num, bool can_replace)
void SetUnspecifiedRegistersAreUndefined(bool unspec_is_undef)
Definition UnwindPlan.h:408
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size, lldb::addr_t address=LLDB_INVALID_ADDRESS)
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, llvm::StringRef name, const Address &address, lldb::TypeSP &type_sp)
const Scalar & GetScalar() const
See comment on m_scalar to understand what GetScalar returns.
Definition Value.h:113
@ Scalar
A raw scalar value.
Definition Value.h:45
void SetCompilerType(const CompilerType &compiler_type)
Definition Value.cpp:276
void SetValueType(ValueType value_type)
Definition Value.h:89
#define LLDB_REGNUM_GENERIC_RA
#define LLDB_REGNUM_GENERIC_ARG8
#define LLDB_REGNUM_GENERIC_ARG6
#define LLDB_REGNUM_GENERIC_SP
#define LLDB_REGNUM_GENERIC_ARG4
#define LLDB_REGNUM_GENERIC_ARG3
#define LLDB_REGNUM_GENERIC_ARG1
#define LLDB_REGNUM_GENERIC_ARG7
#define LLDB_REGNUM_GENERIC_FLAGS
#define UINT32_MAX
#define LLDB_INVALID_REGNUM
#define LLDB_REGNUM_GENERIC_ARG2
#define LLDB_REGNUM_GENERIC_PC
#define LLDB_REGNUM_GENERIC_FP
#define LLDB_REGNUM_GENERIC_ARG5
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition Log.h:332
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
uint64_t offset_t
Definition lldb-types.h:85
std::shared_ptr< lldb_private::Process > ProcessSP
@ eEncodingUint
unsigned integer
ByteOrder
Byte ordering definitions.
std::shared_ptr< lldb_private::UnwindPlan > UnwindPlanSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
uint64_t addr_t
Definition lldb-types.h:80
@ eRegisterKindGeneric
insn ptr reg, stack ptr reg, etc not specific to any particular target
@ eRegisterKindDWARF
the register numbers seen DWARF
Every register is described in detail including its name, alternate name (optional),...
uint32_t byte_offset
The byte offset in the register context data where this register's value is found.
uint32_t byte_size
Size in bytes of the register.
const char * name
Name of this register, can't be NULL.