Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ABI/X86/
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()
706 if (integer_bytes + field_byte_width <= 8) { in GetReturnValueObjectImpl()
709 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
710 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
716 integer_bytes = 8 + field_byte_width; in GetReturnValueObjectImpl()
718 } else if (integer_bytes + field_byte_width <= 16) { in GetReturnValueObjectImpl()
720 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
721 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
[all …]
/external/llvm-project/lldb/source/Plugins/ABI/PowerPC/
DABISysV_ppc.cpp688 uint32_t integer_bytes = in GetReturnValueObjectImpl() local
724 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
725 if (integer_bytes + field_byte_width <= 8) { in GetReturnValueObjectImpl()
728 copy_from_offset = integer_bytes; in GetReturnValueObjectImpl()
729 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
735 integer_bytes = 8 + field_byte_width; in GetReturnValueObjectImpl()
737 } else if (integer_bytes + field_byte_width <= 16) { in GetReturnValueObjectImpl()
739 copy_from_offset = integer_bytes - 8; in GetReturnValueObjectImpl()
740 integer_bytes += field_byte_width; in GetReturnValueObjectImpl()
808 if (integer_bytes < 8) { in GetReturnValueObjectImpl()
[all …]
/external/llvm-project/lldb/source/Plugins/ABI/Mips/
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()