Home
last modified time | relevance | path

Searched refs:integer_bytes (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_x86_64.cpp675 uint32_t integer_bytes = in GetReturnValueObjectImpl() local
682 integer_bytes = aggregate_field_offsets[0]; in GetReturnValueObjectImpl()
705 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
709 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
710 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
720 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
721 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
789 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
792 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
793 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp686 uint32_t integer_bytes = in GetReturnValueObjectImpl() local
722 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
726 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
727 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
733 integer_bytes = 8 + field_byte_width; in GetReturnValueObjectImpl()
737 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
738 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
805 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
808 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
809 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp913 uint32_t integer_bytes = 0; in GetReturnValueObjectImpl() local
1049 padding = field_byte_offset - integer_bytes; in GetReturnValueObjectImpl()
1051 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
1053 if (integer_bytes + *field_byte_width + padding <= 8) { in GetReturnValueObjectImpl()
1056 integer_bytes = integer_bytes + *field_byte_width + in GetReturnValueObjectImpl()
1062 integer_bytes = integer_bytes + *field_byte_width + in GetReturnValueObjectImpl()
1069 else if (integer_bytes + *field_byte_width + padding <= 16) { in GetReturnValueObjectImpl()
1070 integer_bytes = integer_bytes + *field_byte_width + padding; in GetReturnValueObjectImpl()