mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-12-13 15:24:57 +00:00
Initial Commit
This commit is contained in:
68
thirdparty/capstone/suite/synctools/tablegen/include/llvm/IR/FPEnv.h
vendored
Normal file
68
thirdparty/capstone/suite/synctools/tablegen/include/llvm/IR/FPEnv.h
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
//===- FPEnv.h ---- FP Environment ------------------------------*- C++ -*-===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
/// @file
|
||||
/// This file contains the declarations of entities that describe floating
|
||||
/// point environment and related functions.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_IR_FPENV_H
|
||||
#define LLVM_IR_FPENV_H
|
||||
|
||||
#include "llvm/ADT/FloatingPointMode.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
|
||||
namespace llvm {
|
||||
class StringRef;
|
||||
|
||||
namespace fp {
|
||||
|
||||
/// Exception behavior used for floating point operations.
|
||||
///
|
||||
/// Each of these values correspond to some metadata argument value of a
|
||||
/// constrained floating point intrinsic. See the LLVM Language Reference Manual
|
||||
/// for details.
|
||||
enum ExceptionBehavior : uint8_t {
|
||||
ebIgnore, ///< This corresponds to "fpexcept.ignore".
|
||||
ebMayTrap, ///< This corresponds to "fpexcept.maytrap".
|
||||
ebStrict ///< This corresponds to "fpexcept.strict".
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
/// Returns a valid RoundingMode enumerator when given a string
|
||||
/// that is valid as input in constrained intrinsic rounding mode
|
||||
/// metadata.
|
||||
Optional<RoundingMode> convertStrToRoundingMode(StringRef);
|
||||
|
||||
/// For any RoundingMode enumerator, returns a string valid as input in
|
||||
/// constrained intrinsic rounding mode metadata.
|
||||
Optional<StringRef> convertRoundingModeToStr(RoundingMode);
|
||||
|
||||
/// Returns a valid ExceptionBehavior enumerator when given a string
|
||||
/// valid as input in constrained intrinsic exception behavior metadata.
|
||||
Optional<fp::ExceptionBehavior> convertStrToExceptionBehavior(StringRef);
|
||||
|
||||
/// For any ExceptionBehavior enumerator, returns a string valid as
|
||||
/// input in constrained intrinsic exception behavior metadata.
|
||||
Optional<StringRef> convertExceptionBehaviorToStr(fp::ExceptionBehavior);
|
||||
|
||||
/// Returns true if the exception handling behavior and rounding mode
|
||||
/// match what is used in the default floating point environment.
|
||||
inline bool isDefaultFPEnvironment(fp::ExceptionBehavior EB, RoundingMode RM) {
|
||||
return EB == fp::ebIgnore && RM == RoundingMode::NearestTiesToEven;
|
||||
}
|
||||
|
||||
/// Returns true if the rounding mode RM may be QRM at compile time or
|
||||
/// at run time.
|
||||
inline bool canRoundingModeBe(RoundingMode RM, RoundingMode QRM) {
|
||||
return RM == QRM || RM == RoundingMode::Dynamic;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user