Lines Matching defs:BT
74 RVVType::RVVType(BasicType BT, int Log2LMUL,
76 : BT(BT), LMUL(LMULType(Log2LMUL)) {
368 switch (BT) {
922 RVVTypeCache::computeTypes(BasicType BT, int Log2LMUL, unsigned NF,
926 auto T = computeType(BT, Log2LMUL, Proto);
936 static uint64_t computeRVVTypeHashValue(BasicType BT, int Log2LMUL,
940 // | Log2LMUL + 3 | BT | Proto.PT | Proto.TM | Proto.VTM |
942 return (Log2LMUL + 3) | (static_cast<uint64_t>(BT) & 0xff) << 8 |
948 std::optional<RVVTypePtr> RVVTypeCache::computeType(BasicType BT, int Log2LMUL,
950 uint64_t Idx = computeRVVTypeHashValue(BT, Log2LMUL, Proto);
960 RVVType T(BT, Log2LMUL, Proto);