Home | History | Annotate | Download | only in MC

Lines Matching defs:FE

196     const SubtargetFeatureKV &FE = FeatureTable[i];
198 if (FeatureEntry->Value == FE.Value) continue;
200 if (FeatureEntry->Implies & FE.Value) {
201 Bits |= FE.Value;
202 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
215 const SubtargetFeatureKV &FE = FeatureTable[i];
217 if (FeatureEntry->Value == FE.Value) continue;
219 if (FE.Implies & FeatureEntry->Value) {
220 Bits &= ~FE.Value;
221 ClearImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
294 const SubtargetFeatureKV &FE = FeatureTable[i];
295 if (CPUEntry->Value & FE.Value)
296 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);