Home | History | Annotate | Download | only in MC

Lines Matching defs:FE

195     const SubtargetFeatureKV &FE = FeatureTable[i];
197 if (FeatureEntry->Value == FE.Value) continue;
199 if (FeatureEntry->Implies & FE.Value) {
200 Bits |= FE.Value;
201 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
214 const SubtargetFeatureKV &FE = FeatureTable[i];
216 if (FeatureEntry->Value == FE.Value) continue;
218 if (FE.Implies & FeatureEntry->Value) {
219 Bits &= ~FE.Value;
220 ClearImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
293 const SubtargetFeatureKV &FE = FeatureTable[i];
294 if (CPUEntry->Value & FE.Value)
295 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);