blob: 516c702acec7042eb90edd54f03a77c3d7d1b216 [file] [log] [blame]
Serge Pavlovea8678d2019-08-29 19:29:11 +07001//===-- FPEnv.cpp ---- FP Environment -------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// @file
10/// This file contains the implementations of entities that describe floating
11/// point environment.
12//
13//===----------------------------------------------------------------------===//
14
Serge Pavlovea8678d2019-08-29 19:29:11 +070015#include "llvm/IR/FPEnv.h"
Simon Pilgrime367c002020-06-25 11:40:25 +010016#include "llvm/ADT/StringSwitch.h"
Serge Pavlovea8678d2019-08-29 19:29:11 +070017
18namespace llvm {
19
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070020Optional<RoundingMode> StrToRoundingMode(StringRef RoundingArg) {
Serge Pavlovea8678d2019-08-29 19:29:11 +070021 // For dynamic rounding mode, we use round to nearest but we will set the
22 // 'exact' SDNodeFlag so that the value will not be rounded.
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070023 return StringSwitch<Optional<RoundingMode>>(RoundingArg)
24 .Case("round.dynamic", RoundingMode::Dynamic)
25 .Case("round.tonearest", RoundingMode::NearestTiesToEven)
26 .Case("round.tonearestaway", RoundingMode::NearestTiesToAway)
27 .Case("round.downward", RoundingMode::TowardNegative)
28 .Case("round.upward", RoundingMode::TowardPositive)
29 .Case("round.towardzero", RoundingMode::TowardZero)
Serge Pavlovea8678d2019-08-29 19:29:11 +070030 .Default(None);
31}
32
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070033Optional<StringRef> RoundingModeToStr(RoundingMode UseRounding) {
Serge Pavlovea8678d2019-08-29 19:29:11 +070034 Optional<StringRef> RoundingStr = None;
35 switch (UseRounding) {
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070036 case RoundingMode::Dynamic:
Serge Pavlovea8678d2019-08-29 19:29:11 +070037 RoundingStr = "round.dynamic";
38 break;
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070039 case RoundingMode::NearestTiesToEven:
Serge Pavlovea8678d2019-08-29 19:29:11 +070040 RoundingStr = "round.tonearest";
41 break;
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070042 case RoundingMode::NearestTiesToAway:
43 RoundingStr = "round.tonearestaway";
44 break;
45 case RoundingMode::TowardNegative:
Serge Pavlovea8678d2019-08-29 19:29:11 +070046 RoundingStr = "round.downward";
47 break;
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070048 case RoundingMode::TowardPositive:
Serge Pavlovea8678d2019-08-29 19:29:11 +070049 RoundingStr = "round.upward";
50 break;
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070051 case RoundingMode::TowardZero:
Serge Pavlovea8678d2019-08-29 19:29:11 +070052 RoundingStr = "round.towardzero";
53 break;
Serge Pavlovc7ff5b32020-03-26 14:51:09 +070054 default:
55 break;
Serge Pavlovea8678d2019-08-29 19:29:11 +070056 }
57 return RoundingStr;
58}
59
60Optional<fp::ExceptionBehavior> StrToExceptionBehavior(StringRef ExceptionArg) {
61 return StringSwitch<Optional<fp::ExceptionBehavior>>(ExceptionArg)
62 .Case("fpexcept.ignore", fp::ebIgnore)
63 .Case("fpexcept.maytrap", fp::ebMayTrap)
64 .Case("fpexcept.strict", fp::ebStrict)
65 .Default(None);
66}
67
68Optional<StringRef> ExceptionBehaviorToStr(fp::ExceptionBehavior UseExcept) {
69 Optional<StringRef> ExceptStr = None;
70 switch (UseExcept) {
71 case fp::ebStrict:
72 ExceptStr = "fpexcept.strict";
73 break;
74 case fp::ebIgnore:
75 ExceptStr = "fpexcept.ignore";
76 break;
77 case fp::ebMayTrap:
78 ExceptStr = "fpexcept.maytrap";
79 break;
80 }
81 return ExceptStr;
82}
Simon Pilgrim8b520372020-06-25 17:48:29 +010083} // namespace llvm