Conveniently viewing __m256 in different ways

Neill Clift 21 Reputation points
2020-12-15T18:45:14.773+00:00

When debugging a C++ program using __m256 how do I view this is different ways?
I am using visual studio16.8.3 and the only format it is showing me is 4 64 bit integers. My program happens to be using SIMD with 8 32 bit integers.
Surely there is some way to conveniently view registers and values in the correct way?
48415-image.png

C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,964 questions
0 comments No comments
{count} votes

Accepted answer
  1. Viorel 122.2K Reputation points
    2020-12-15T19:50:18.21+00:00

    In case of variables like this:

    __m256 m;

    you can enter the next expression to Watch window:

    (int**)&m,8*

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.