Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.h327 RTZ = 1, enumerator
341 case RISCVFPRndMode::RTZ: in roundingModeToString()
357 .Case("rtz", RISCVFPRndMode::RTZ) in stringToRoundingMode()
370 case RISCVFPRndMode::RTZ: in isValidRoundingMode()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td1366 !not(!eq(!find(name, "_rtz"), -1)) : RTZ,
1470 !not(!eq(!find(name, "_rtz"), -1)) : RTZ,
H A DSPIRVSymbolicOperands.td1042 defm RTZ : FPRoundingModeOperand<1>;
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp2937 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, Subtarget.getXLenVT())); in lowerFP_TO_INT_SAT()
3015 return RISCVFPRndMode::RTZ; in matchRoundingOp()
5453 // Use RTZ to avoid rounding influencing exponent of FloatVal. in lowerCTLZ_CTTZ_ZERO_UNDEF()
5461 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, Subtarget.getXLenVT()); in lowerCTLZ_CTTZ_ZERO_UNDEF()
12076 (int(RoundingMode::TowardZero) << 4 * RISCVFPRndMode::RTZ) | in lowerGET_ROUNDING()
12106 (RISCVFPRndMode::RTZ << 4 * int(RoundingMode::TowardZero)) | in lowerSET_ROUNDING()
12222 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, MVT::i64)); in ReplaceNodeResults()
12237 DAG.getTargetConstant(RISCVFPRndMode::RTZ, DL, MVT::i64)); in ReplaceNodeResults()
15340 if (FRM == RISCVFPRndMode::RTZ) { in performFP_TO_INTCombine()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp607 bool isRTZArg() const { return isFRMArg() && FRM.FRM == RISCVFPRndMode::RTZ; } in isRTZArg()