Lines Matching refs:arch
147 static bool x86__ins_is_fused(struct arch *arch, const char *ins1,
150 if (arch->family != 6 || arch->model < 0x1e || strstr(ins2, "jmp"))
153 if (arch->model == 0x1e) {
175 static int x86__cpuid_parse(struct arch *arch, char *cpuid)
185 arch->family = family;
186 arch->model = model;
193 static int x86__annotate_init(struct arch *arch, char *cpuid)
197 if (arch->initialized)
201 if (x86__cpuid_parse(arch, cpuid))
205 arch->initialized = true;