Lines Matching refs:supported_
81 if (cpu.has_sse42() && FLAG_enable_sse4_2) supported_ |= 1u << SSE4_2; in ProbeImpl()
83 supported_ |= 1u << SSE4_1; in ProbeImpl()
84 supported_ |= 1u << SSSE3; in ProbeImpl()
86 if (cpu.has_ssse3() && FLAG_enable_ssse3) supported_ |= 1u << SSSE3; in ProbeImpl()
87 if (cpu.has_sse3() && FLAG_enable_sse3) supported_ |= 1u << SSE3; in ProbeImpl()
89 if (cpu.has_sahf() && FLAG_enable_sahf) supported_ |= 1u << SAHF; in ProbeImpl()
92 supported_ |= 1u << AVX; in ProbeImpl()
96 supported_ |= 1u << FMA3; in ProbeImpl()
98 if (cpu.has_bmi1() && FLAG_enable_bmi1) supported_ |= 1u << BMI1; in ProbeImpl()
99 if (cpu.has_bmi2() && FLAG_enable_bmi2) supported_ |= 1u << BMI2; in ProbeImpl()
100 if (cpu.has_lzcnt() && FLAG_enable_lzcnt) supported_ |= 1u << LZCNT; in ProbeImpl()
101 if (cpu.has_popcnt() && FLAG_enable_popcnt) supported_ |= 1u << POPCNT; in ProbeImpl()
103 if (cpu.is_atom()) supported_ |= 1u << ATOM; in ProbeImpl()
105 supported_ |= 1u << ATOM; in ProbeImpl()