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
diff --git a/lldb/tools/debugserver/source/DNBDefs.h b/lldb/tools/debugserver/source/DNBDefs.h
index 23960ef..10f3727 100644
--- a/lldb/tools/debugserver/source/DNBDefs.h
+++ b/lldb/tools/debugserver/source/DNBDefs.h
@@ -281,16 +281,16 @@
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;