Searched refs:OMI (Results 1 – 2 of 2) sorted by relevance
724 StringMap<Option *>::const_iterator OMI = OptionsMap.find(Name); in getOptionPred() local725 if (OMI != OptionsMap.end() && !Pred(OMI->getValue())) in getOptionPred()726 OMI = OptionsMap.end(); in getOptionPred()731 while (OMI == OptionsMap.end() && Name.size() > 1) { in getOptionPred()733 OMI = OptionsMap.find(Name); in getOptionPred()734 if (OMI != OptionsMap.end() && !Pred(OMI->getValue())) in getOptionPred()735 OMI = OptionsMap.end(); in getOptionPred()738 if (OMI != OptionsMap.end() && Pred(OMI->second)) { in getOptionPred()740 return OMI->second; // Found one! in getOptionPred()
2852 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local2853 MaxMask |= OMI.OperandMask; in emitCustomOperandParsing()2893 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local2894 const MatchableInfo &II = *OMI.MI; in emitCustomOperandParsing()2903 OS << OMI.OperandMask; in emitCustomOperandParsing()2907 if (OMI.OperandMask & (1 << i)) in emitCustomOperandParsing()2911 OS << OMI.CI->Name; in emitCustomOperandParsing()