Searched refs:NumConds (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1060 unsigned NumConds; variable 1065 NumConds(NC), ValType(Type) {} in CondOpInit() 1068 return 2*NumConds; in numTrailingObjects() 1086 unsigned getNumConds() const { return NumConds; } in getNumConds() 1089 assert(Num < NumConds && "Condition number out of range!"); in getCond() 1094 assert(Num < NumConds && "Val number out of range!"); in getVal() 1095 return getTrailingObjects<Init *>()[Num+NumConds]; in getVal() 1099 return ArrayRef(getTrailingObjects<Init *>(), NumConds); in getConds() 1103 return ArrayRef(getTrailingObjects<Init *>() + NumConds, NumConds); in getVals() 1120 inline size_t case_size () const { return NumConds; } in case_size() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCInstPrinter.h | 193 uint8_t NumConds; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCInstPrinter.cpp | 147 M.PatternConds.slice(P.AliasCondStart, P.NumConds); in matchAliasPatterns()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 2001 unsigned NumConds = 0; in VisitBinLAnd() local 2002 if (IsRootNode && (NumConds = MCDCBuilder.getTotalConditionsAndReset(E))) in VisitBinLAnd() 2003 createDecisionRegion(E, getRegionBitmap(E), NumConds); in VisitBinLAnd() 2054 unsigned NumConds = 0; in VisitBinLOr() local 2055 if (IsRootNode && (NumConds = MCDCBuilder.getTotalConditionsAndReset(E))) in VisitBinLOr() 2056 createDecisionRegion(E, getRegionBitmap(E), NumConds); in VisitBinLOr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 2431 ProfileCondOpInit(ID, ArrayRef(getTrailingObjects<Init *>(), NumConds), in Profile() 2432 ArrayRef(getTrailingObjects<Init *>() + NumConds, NumConds), in Profile() 2486 for ( unsigned i = 0; i < NumConds; ++i) { in Fold()
|