Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_x86_64.cpp677 uint32_t integer_bytes = in GetReturnValueObjectImpl() local
684 integer_bytes = aggregate_field_offsets[0]; in GetReturnValueObjectImpl()
707 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
708 if (integer_bytes + field_byte_width <= 8) { in GetReturnValueObjectImpl()
711 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
712 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
718 integer_bytes = 8 + field_byte_width; in GetReturnValueObjectImpl()
720 } else if (integer_bytes + field_byte_width <= 16) { in GetReturnValueObjectImpl()
722 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
723 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp687 uint32_t integer_bytes = in GetReturnValueObjectImpl() local
723 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
724 if (integer_bytes + field_byte_width <= 8) { in GetReturnValueObjectImpl()
727 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
728 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
734 integer_bytes = 8 + field_byte_width; in GetReturnValueObjectImpl()
736 } else if (integer_bytes + field_byte_width <= 16) { in GetReturnValueObjectImpl()
738 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
739 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
806 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp915 uint32_t integer_bytes = 0; in GetReturnValueObjectImpl() local
1051 padding = field_byte_offset - integer_bytes; in GetReturnValueObjectImpl()
1053 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
1055 if (integer_bytes + *field_byte_width + padding <= 8) { in GetReturnValueObjectImpl()
1058 integer_bytes = integer_bytes + *field_byte_width + in GetReturnValueObjectImpl()
1064 integer_bytes = integer_bytes + *field_byte_width + in GetReturnValueObjectImpl()
1071 else if (integer_bytes + *field_byte_width + padding <= 16) { in GetReturnValueObjectImpl()
1072 integer_bytes = integer_bytes + *field_byte_width + padding; in GetReturnValueObjectImpl()