Lines Matching full:features
19 # Mandatory CPUID features for each microarch ABI level
64 # TCG masks out certain features otherwise present in
109 # Dict of all present features in this CPU model
110 "features": got,
115 # Number of extra CPUID features compared to the x86-64 ABI level
118 # CPUID features present in model, but not in ABI level
121 # CPUID features in ABI level but not present in model
129 got = set(models[name]["features"])
153 # Find the union of features in all CPU models satisfying this ABI
156 for feat in models[name]["features"]:
159 # Find the intersection of features in all CPU models satisfying this ABI
166 if feat not in models[name]["features"]:
171 # Determine how many extra features are present compared to the lowest
177 delta = set(models[name]["features"].keys()) - set(commonfeatures)