Lines Matching full:nf

118   if (IsTuple && (NF == 1 || NF > 8))  in verifyType()
120 if (IsTuple && (1 << std::max(0, LMUL.Log2LMUL)) * NF > 8) in verifyType()
228 BuiltinStr = "T" + utostr(NF) + BuiltinStr; in initBuiltinStr()
256 (IsTuple ? "x" + utostr(NF) : "") + "_t"; in initClangBuiltinStr()
269 (IsTuple ? "x" + utostr(NF) : "") + "_t") in initTypeStr()
358 ShortStr += "x" + utostr(NF); in initShortStr()
361 static VectorTypeModifier getTupleVTM(unsigned NF) { in getTupleVTM() argument
362 assert(2 <= NF && NF <= 8 && "2 <= NF <= 8"); in getTupleVTM()
364 static_cast<uint8_t>(VectorTypeModifier::Tuple2) + (NF - 2)); in getTupleVTM()
622 unsigned NF = 0; in parsePrototypeDescriptor() local
623 if (ComplexTT.second.getAsInteger(10, NF)) { in parsePrototypeDescriptor()
624 llvm_unreachable("Invalid NF value!"); in parsePrototypeDescriptor()
627 VTM = getTupleVTM(NF); in parsePrototypeDescriptor()
821 NF = 2 + static_cast<uint8_t>(Transformer.VTM) - in applyModifier()
922 RVVTypeCache::computeTypes(BasicType BT, int Log2LMUL, unsigned NF, in computeTypes() argument
981 unsigned NF, Policy NewPolicyAttrs, bool HasFRMRoundModeOp) in RVVIntrinsic() argument
985 ManualCodegen(ManualCodegen.str()), NF(NF), PolicyAttrs(NewPolicyAttrs) { in RVVIntrinsic()
1013 I += NF; in RVVIntrinsic()
1040 bool HasMaskedOffOperand, bool HasVL, unsigned NF, in computeBuiltinTypes() argument
1049 if (NF == 1) { in computeBuiltinTypes()
1051 } else if (NF > 1) { in computeBuiltinTypes()
1056 static_cast<uint8_t>(getTupleVTM(NF)), in computeBuiltinTypes()
1066 NewPrototype.insert(NewPrototype.begin() + NF + 1, NF, MaskoffType); in computeBuiltinTypes()
1070 if (HasMaskedOffOperand && NF > 1) { in computeBuiltinTypes()
1080 NewPrototype.insert(NewPrototype.begin() + NF + 1, in computeBuiltinTypes()
1087 if (NF == 1) { in computeBuiltinTypes()
1095 static_cast<uint8_t>(getTupleVTM(NF)), in computeBuiltinTypes()
1099 // NF > 1 cases for segment load operations. in computeBuiltinTypes()
1106 NewPrototype.insert(NewPrototype.begin() + NF + 1, NF, MaskoffType); in computeBuiltinTypes()
1217 OS << (int)Record.NF << ","; in operator <<()