/external/valgrind/main/none/tests/amd64/ |
avx2-1.c | 16 typedef union { UChar u8[32]; UInt u32[8]; } YMM; 18 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; 20 void showYMM ( YMM* vec ) [all...] |
avx-1.c | 14 typedef union { UChar u8[32]; UInt u32[8]; } YMM; 16 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; 18 void showYMM ( YMM* vec ) [all...] |
/external/lldb/source/Plugins/Process/POSIX/ |
RegisterContext_x86_64.h | 255 uint8_t bytes[16]; // 16 * 8 bits for the high bytes of each YMM register 260 uint8_t bytes[32]; // 16 * 16 bits for each YMM register 263 struct YMM 265 YMMReg ymm[16]; // assembled from ymmh and xmm registers member in struct:RegisterContext_x86_64::YMM 280 YMMHReg ymmh[16]; // High 16 bytes of each of 16 YMM registers (the low bytes are in FXSAVE.xmm for compatibility with SSE) 331 YMM m_ymm_set; // copy of ymmh and xmm register halves.
|
RegisterContext_x86_64.cpp | 297 // Computes the offset of the YMM register assembled from register halves. 299 (offsetof(RegisterContext_x86_64::YMM, regname)) 313 // Number of bytes needed to represent a YMM register. 438 // Copy of YMM registers assembled from xmm and ymmh 439 DEFINE_YMM(ymm, 0), 440 DEFINE_YMM(ymm, 1), 441 DEFINE_YMM(ymm, 2), 442 DEFINE_YMM(ymm, 3), 443 DEFINE_YMM(ymm, 4), 444 DEFINE_YMM(ymm, 5) [all...] |