aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen/avx_type.hpp
blob: 6fa11f4e18501b1ddb712a78467b9909229f6a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <assert.h>
#include "avx_type_def.h"

const int NONE = 256; // same as Xbyak::CodeGenerator::NONE

std::string type2String(uint64_t type)
{
	if (type == 0) return "T_NONE";
	std::string str;
	int low = type & T_NX_MASK;
	if (0 < low && low < 7) {
		const char *tbl[8] = {
			"T_N1", "T_N2", "T_N4", "T_N8", "T_N16", "T_N32"
		};
		assert(low < int(sizeof(tbl) / sizeof(tbl[0])));
		str = tbl[low - 1];
	}
	if (type & T_N_VL) str += "|T_N_VL";
	if (type & T_APX) str += "|T_APX";
	if ((type & T_NX_MASK) == T_DUP) str += "|T_DUP";
	if (type & T_66) str += "|T_66";
	if (type & T_F3) str += "|T_F3";
	if (type & T_F2) str += "|T_F2";
	if (type & T_0F) {
		if (type & T_FP16) {
			str += "|T_MAP5";
		} else {
			str += "|T_0F";
		}
	}
	if (type & T_0F38) {
		if (type & T_FP16) {
			str += "|T_MAP6";
		} else {
			str += "|T_0F38";
		}
	}
	if (type & T_0F3A) str += "|T_0F3A";
	if (type & T_L0) str += "|T_L0";
	if (type & T_L1) str += "|T_L1";
	if (type & T_W0) str += "|T_W0";
	if (type & T_W1) str += "|T_W1";
	if (type & T_EW0) str += "|T_EW0";
	if (type & T_EW1) str += "|T_EW1";
	if (type & T_YMM) str += "|T_YMM";
	if (type & T_EVEX) str += "|T_EVEX";
	if (type & T_ER_X) str += "|T_ER_X";
	if (type & T_ER_Y) str += "|T_ER_Y";
	if (type & T_ER_Z) str += "|T_ER_Z";
	if (type & T_ER_R) str += "|T_ER_R";
	if (type & T_SAE_X) str += "|T_SAE_X";
	if (type & T_SAE_Y) str += "|T_SAE_Y";
	if (type & T_SAE_Z) str += "|T_SAE_Z";
	if (type & T_MUST_EVEX) str += "|T_MUST_EVEX";

	switch (type & T_B16) { // T_B16 = T_B32 | T_B64
	case T_B16: str += "|T_B16"; break;
	case T_B32: str += "|T_B32"; break;
	case T_B64: str += "|T_B64"; break;
	default: break;
	}
	if (type & T_M_K) str += "|T_M_K";
	if (type & T_VSIB) str += "|T_VSIB";
	if (type & T_MEM_EVEX) str += "|T_MEM_EVEX";
	if (type & T_NF) str += "|T_NF";
	if (type & T_CODE1_IF1) str += "|T_CODE1_IF1";
	if (type & T_ND1) str += "|T_ND1";
	if (type & T_ZU) str += "|T_ZU";

	if (str[0] == '|') str = str.substr(1);
	return str;
}