Home
last modified time | relevance | path

Searched refs:RTZ (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.h338 RTZ = 1, enumerator
352 case RISCVFPRndMode::RTZ: in roundingModeToString()
368 .Case("rtz", RISCVFPRndMode::RTZ) in stringToRoundingMode()
381 case RISCVFPRndMode::RTZ: in isValidRoundingMode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td986 !not(!eq(!find(name, "_rtz"), -1)) : RTZ,
1051 !not(!eq(!find(name, "_rtz"), -1)) : RTZ,
H A DSPIRVSymbolicOperands.td1011 defm RTZ : FPRoundingModeOperand<1>;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp2765 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, Subtarget.getXLenVT())); in lowerFP_TO_INT_SAT()
2843 return RISCVFPRndMode::RTZ; in matchRoundingOp()
5174 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, Subtarget.getXLenVT()); in lowerCTLZ_CTTZ_ZERO_UNDEF()
11271 (int(RoundingMode::TowardZero) << 4 * RISCVFPRndMode::RTZ) | in lowerGET_ROUNDING()
11301 (RISCVFPRndMode::RTZ << 4 * int(RoundingMode::TowardZero)) | in lowerSET_ROUNDING()
11417 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, MVT::i64)); in ReplaceNodeResults()
11432 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, MVT::i64)); in ReplaceNodeResults()
13897 if (FRM == RISCVFPRndMode::RTZ) { in performFP_TO_INTCombine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp599 bool isRTZArg() const { return isFRMArg() && FRM.FRM == RISCVFPRndMode::RTZ; } in isRTZArg()