Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp705 StringMap<Option *>::const_iterator OMI = OptionsMap.find(Name); in getOptionPred() local
706 if (OMI != OptionsMap.end() && !Pred(OMI->getValue())) in getOptionPred()
707 OMI = OptionsMap.end(); in getOptionPred()
712 while (OMI == OptionsMap.end() && Name.size() > 1) { in getOptionPred()
714 OMI = OptionsMap.find(Name); in getOptionPred()
715 if (OMI != OptionsMap.end() && !Pred(OMI->getValue())) in getOptionPred()
716 OMI = OptionsMap.end(); in getOptionPred()
719 if (OMI != OptionsMap.end() && Pred(OMI->second)) { in getOptionPred()
721 return OMI->second; // Found one! in getOptionPred()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp754 unsigned getUnversionedInfoSize(const ObjCMethodInfo &OMI) { in getUnversionedInfoSize() argument
755 return getFunctionInfoSize(OMI) + 1; in getUnversionedInfoSize()
758 void emitUnversionedInfo(raw_ostream &OS, const ObjCMethodInfo &OMI) { in emitUnversionedInfo() argument
761 flags = (flags << 1) | OMI.DesignatedInit; in emitUnversionedInfo()
762 flags = (flags << 1) | OMI.RequiredInit; in emitUnversionedInfo()
765 emitFunctionInfo(OS, OMI); in emitUnversionedInfo()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp2855 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local
2856 MaxMask |= OMI.OperandMask; in emitCustomOperandParsing()
2896 for (const OperandMatchEntry &OMI : Info.OperandMatchInfo) { in emitCustomOperandParsing() local
2897 const MatchableInfo &II = *OMI.MI; in emitCustomOperandParsing()
2906 OS << OMI.OperandMask; in emitCustomOperandParsing()
2910 if (OMI.OperandMask & (1 << i)) in emitCustomOperandParsing()
2914 OS << OMI.CI->Name; in emitCustomOperandParsing()