diff options
| author | Sean Callanan <scallanan@apple.com> | 2011-03-22 21:45:30 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2011-03-22 21:45:30 +0000 |
| commit | c530af05fe8226219a8eafaa81c2067d63f103e8 (patch) | |
| tree | f4061f00c704b2c773f7b1c7534d416ad7be92fa /lldb/tools/debugserver/source/DNBDefs.h | |
| parent | 015d6288d463cda1a9988aeeee8b414c7ae77156 (diff) | |
| download | bcm5719-llvm-c530af05fe8226219a8eafaa81c2067d63f103e8.tar.gz bcm5719-llvm-c530af05fe8226219a8eafaa81c2067d63f103e8.zip | |
Added AVX support to the Intel portion of debugserver. AVX
autodetection is not yet implemented, but the structures and
register reading/writing code are there.
llvm-svn: 128111
Diffstat (limited to 'lldb/tools/debugserver/source/DNBDefs.h')
| -rw-r--r-- | lldb/tools/debugserver/source/DNBDefs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lldb/tools/debugserver/source/DNBDefs.h b/lldb/tools/debugserver/source/DNBDefs.h index 23960ef4957..10f3727714a 100644 --- a/lldb/tools/debugserver/source/DNBDefs.h +++ b/lldb/tools/debugserver/source/DNBDefs.h @@ -281,16 +281,16 @@ struct DNBRegisterValue uint64_t uint64; float float32; double float64; - int8_t v_sint8[16]; - int16_t v_sint16[8]; - int32_t v_sint32[4]; - int64_t v_sint64[2]; - uint8_t v_uint8[16]; - uint16_t v_uint16[8]; - uint32_t v_uint32[4]; - uint64_t v_uint64[2]; - float v_float32[4]; - double v_float64[2]; + int8_t v_sint8[32]; + int16_t v_sint16[16]; + int32_t v_sint32[8]; + int64_t v_sint64[4]; + uint8_t v_uint8[32]; + uint16_t v_uint16[16]; + uint32_t v_uint32[8]; + uint64_t v_uint64[4]; + float v_float32[8]; + double v_float64[4]; void *pointer; char *c_str; } value; |

