Searched refs:Fractional (Results 1 - 9 of 9) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp170 bool Fractional; local
171 std::tie(LMul, Fractional) = decodeVLMUL(getVLMUL(VType));
173 if (Fractional)
192 bool Fractional; local
193 std::tie(LMul, Fractional) = decodeVLMUL(VLMul);
196 LMul = Fractional ? (8 / LMul) : (LMul * 8);
H A DRISCVBaseInfo.h424 inline static bool isValidLMUL(unsigned LMUL, bool Fractional) { argument
425 return isPowerOf2_32(LMUL) && LMUL <= 8 && (!Fractional || LMUL != 1);
439 inline static RISCVII::VLMUL encodeLMUL(unsigned LMUL, bool Fractional) { argument
440 assert(isValidLMUL(LMUL, Fractional) && "Unsupported LMUL");
442 return static_cast<RISCVII::VLMUL>(Fractional ? 8 - LmulLog2 : LmulLog2);
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DChrono.cpp57 auto Fractional = T - Truncated; local
67 "%.3lu", (long)duration_cast<milliseconds>(Fractional).count());
72 "%.6lu", (long)duration_cast<microseconds>(Fractional).count());
77 "%.6lu", (long)duration_cast<nanoseconds>(Fractional).count());
/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInsertVSETVLI.cpp1143 bool Fractional; local
1144 std::tie(LMul, Fractional) = RISCVVType::decodeVLMUL(Info.getVLMUL());
1146 if (Fractional)
H A DRISCVTargetTransformInfo.cpp25 "by autovectorized code. Fractional LMULs are not supported."),
43 bool Fractional; local
44 std::tie(LMul, Fractional) =
46 if (Fractional)
H A DRISCVInstrInfo.cpp430 bool Fractional; local
431 std::tie(LMulVal, Fractional) = RISCVVType::decodeVLMUL(LMul);
432 assert(!Fractional && "It is impossible be fractional lmul here.");
/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1744 bool Fractional = Name.consume_front("f");
1748 if (!RISCVVType::isValidLMUL(Lmul, Fractional))
1771 RISCVII::VLMUL VLMUL = RISCVVType::encodeLMUL(Lmul, Fractional);
/openbsd-current/gnu/usr.bin/perl/dist/Thread-Queue/lib/Thread/
H A DQueue.pm485 Fractional seconds (e.g., 2.5 seconds) are also supported (to the extent of
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGDebugInfo.cpp774 bool Fractional = false; local
782 Fractional = true;
799 if (Fractional)

Completed in 791 milliseconds