Skip to content

Commit

Permalink
Add a var_types_classification for simd (#82616)
Browse files Browse the repository at this point in the history
* Add a var_types_classification for simd

* Ensure TYP_SIMD are actually marked VTF_VEC
  • Loading branch information
tannergooding committed Feb 24, 2023
1 parent d3b7dc1 commit f11bb5a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 23 deletions.
8 changes: 4 additions & 4 deletions src/coreclr/jit/typelist.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ DEF_TP(LCLBLK ,"lclBlk" , TYP_LCLBLK, TI_ERROR, 0, 0, 0, 1, 4, VTF_ANY) /

#ifdef FEATURE_SIMD
// Amd64: The size and alignment of SIMD vector varies at JIT time based on whether target arch supports AVX or SSE2.
DEF_TP(SIMD8 ,"simd8" , TYP_SIMD8, TI_STRUCT, 8, 8, 8, 2, 8, VTF_S)
DEF_TP(SIMD12 ,"simd12" , TYP_SIMD12, TI_STRUCT,12,16, 16, 4,16, VTF_S)
DEF_TP(SIMD16 ,"simd16" , TYP_SIMD16, TI_STRUCT,16,16, 16, 4,16, VTF_S)
DEF_TP(SIMD32 ,"simd32" , TYP_SIMD32, TI_STRUCT,32,32, 32, 8,16, VTF_S)
DEF_TP(SIMD8 ,"simd8" , TYP_SIMD8, TI_STRUCT, 8, 8, 8, 2, 8, VTF_S|VTF_VEC)
DEF_TP(SIMD12 ,"simd12" , TYP_SIMD12, TI_STRUCT,12,16, 16, 4,16, VTF_S|VTF_VEC)
DEF_TP(SIMD16 ,"simd16" , TYP_SIMD16, TI_STRUCT,16,16, 16, 4,16, VTF_S|VTF_VEC)
DEF_TP(SIMD32 ,"simd32" , TYP_SIMD32, TI_STRUCT,32,32, 32, 8,16, VTF_S|VTF_VEC)
#endif // FEATURE_SIMD

DEF_TP(UNKNOWN ,"unknown" ,TYP_UNKNOWN, TI_ERROR, 0, 0, 0, 0, 0, VTF_ANY)
Expand Down
25 changes: 6 additions & 19 deletions src/coreclr/jit/vartype.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ enum var_types_classification
VTF_BYR = 0x0010, // type is Byref
VTF_I = 0x0020, // is machine sized
VTF_S = 0x0040, // is a struct type
VTF_VEC = 0x0080, // is a vector type
};

#include "vartypesdef.h"
Expand Down Expand Up @@ -61,30 +62,16 @@ inline var_types TypeGet(var_types v)
return v;
}

#ifdef FEATURE_SIMD
template <class T>
inline bool varTypeIsSIMD(T vt)
{
switch (TypeGet(vt))
{
case TYP_SIMD8:
case TYP_SIMD12:
case TYP_SIMD16:
case TYP_SIMD32:
return true;
default:
return false;
}
}
#else // FEATURE_SIMD

// Always return false if FEATURE_SIMD is not enabled
template <class T>
inline bool varTypeIsSIMD(T vt)
{
#ifdef FEATURE_SIMD
return ((varTypeClassification[TypeGet(vt)] & VTF_VEC) != 0);
#else
// Always return false if FEATURE_SIMD is not enabled
return false;
}
#endif // !FEATURE_SIMD
}

template <class T>
inline bool varTypeIsIntegral(T vt)
Expand Down

0 comments on commit f11bb5a

Please sign in to comment.