Home
last modified time | relevance | path

Searched refs:OMI (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Support/
DCommandLine.cpp724 StringMap<Option *>::const_iterator OMI = OptionsMap.find(Name); in getOptionPred() local
725 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()
/openbsd/src/gnu/llvm/llvm/utils/TableGen/
DAsmMatcherEmitter.cpp2852 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local
2853 MaxMask |= OMI.OperandMask; in emitCustomOperandParsing()
2893 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local
2894 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()